/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 700px;
    margin: 50px auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

h1 {
    color: #333;
}

p {
    font-size: 18px;
    margin: 20px 0;
}

/* Form Elements */
input, select, button {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    font-size: 16px;
    box-sizing: border-box;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

/* Button Styles */
.submit-btn {
    background-color: #4CAF50;
    color: white;
    padding: 12px 25px;
    margin: 0px 0px 10px;
    font-size: 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #45a049;
}

.admin-btn {
    background-color: #2196F3;
    color: white;
    padding: 12px 25px;
    margin: 0px 0px 10px;
    font-size: 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.admin-btn:hover {
    background-color: #1976D2;
}

a button {
    padding: 12px 25px;
    margin: 10px;
    font-size: 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Map Styles */
#map {
    height: 400px;
    border-radius: 6px;
    margin-bottom: 15px;
}

/* Form Field Containers */
.field-container, .field-container-small {
    margin-bottom: 1rem;
}

.field-container label, .field-container-small label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 500;
}

/* Form Input Groups */
.input-with-button {
    display: flex;
    align-items: center;
    width: 100%;
}

.input-with-button input,
.input-with-button select {
    flex: 1;
    box-sizing: border-box;
}

.input-with-button button {
    width: auto !important;
    margin-left: 6px;
    flex: 0 0 auto;
    padding: 6px 10px;
    font-size: 15px;
    border: 1px solid #ccc;
    background: #eee;
    color: #333;
    cursor: pointer;
    border-radius: 4px;
    white-space: nowrap;
    transition: background 0.3s;
}

.input-with-button button:hover {
    background: #ddd;
}

.input-with-button button.active,
.unknown-btn.active {
    background: #4285f4;   
    color: white;          
    border-color: #4285f4;
}

.field-container select {
    width: auto;
    padding: 8px 12px;
    flex: 0 0 auto;
    margin-left: 6px;
}

.field-container-small select {
    width: 100%;
    padding: 8px 12px;
    flex: 0 0 auto;
}

.unknown-placeholder::placeholder {
    color: #565656;
    font-style: italic;
}

/* About Page Content Styles */
.about-content {
    margin-top: 30px;
}

.about-content h2 {
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
}

.about-content ul {
    padding-left: 20px;
    line-height: 1.6;
}

.about-content li {
    margin-bottom: 5px;
}

/* Map Card Styling */
.map-card-full {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e0e0e0;
    margin: 20px 0;
    transition: background-color 0.3s ease;
}

.map-card-full:hover {
    background: #f0f0f0;
}

.map-card-full .stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 8px;
    line-height: 1;
}

.map-card-full .stat-label {
    font-size: 14px;
    color: #666;
    font-weight: normal;
    margin-bottom: 15px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

    .map-card-full {
        padding: 15px;
        margin: 15px 0;
    }
    
    .map-card-full {
        font-size: 28px;
    }
}
