/* WestCoGMRS Basic Site Styling */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
    color: #333;
}

header {
    position: relative;
    background-color: #003366;
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
}

header img {
    max-height: 120px;
    vertical-align: middle;
}

nav {
    margin-top: 10px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 40px;
    background: white;
    padding: 20px;
    border-radius: 8px;
}

h1, h2 {
    color: #003366;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="submit"] {
    background-color: #003366;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

input[type="submit"]:hover {
    background-color: #0055cc;
}

footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

.button {
    background-color: #003366;
    color: white;
    padding: 10px 20px;
    display: inline-block;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
}

.button:hover {
    background-color: #0055cc;
}
/* General form container */
.form-container {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

/* Responsive adjustment for very small screens (optional for mobile fine-tuning) */
@media (max-width: 600px) {
    .form-container {
        max-width: 90%; /* Let mobile use more width */
    }
}
.repeater-link {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit normal text color */
    display: block; /* Make the entire block clickable */
}
.repeater-link:hover .repeater-card {
    background-color: #f0f0f0; /* Slightly lighter when hovered */
}
.repeater-details {
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 5px solid #007bff;
    border-radius: 8px;
}
.repeater-map-fallback {
    color: #6c757d;
    font-size: 18px;
    font-style: italic;
    margin-top: 20px;
}
details {
    background: #f0f8ff;
    border: 1px solid #99c9ff;
    border-radius: 6px;
    padding: 10px 15px;
    margin: 10px 0;
    font-style: italic;
}

summary {
    font-weight: bold;
    cursor: pointer;
    font-style: normal;
}

details[open] {
    background: #e6f2ff;
}