﻿body {
}
.content-container {
    max-width: 1100px;
    margin: 0 auto;
}

.content-box {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

h3 {
    color: var(--primary-color);
    border-left: 5px solid var(--accent-color);
    padding-left: 15px;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

h4 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Responsive Flex Layout */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* Form Styling */
form {
    background-color: var(--bg-mid);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--primary-color);
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    transition: 0.3s;
    box-sizing: border-box;
}

    input:focus, select:focus, textarea:focus {
        border-color: var(--accent-color);
        outline: none;
        box-shadow: 0 0 8px rgba(52, 152, 219, 0.2);
    }

button {
    background: var(--accent-color) !important;
    transition: transform 0.2s, background 0.3s;
    font-weight: 600;
    width: 100%;
    margin-top: 10px;
}

    button:hover {
        background: #2980b9 !important;
        transform: translateY(-2px);
    }

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background 0.3s;
    text-align: center;
    margin-top: 20px;
}

    .btn:hover {
        background: #ffcc33;
    }

.btn-full {
    width: 100%;
}

.btn-small {
    width: auto;
    font-size: 0.9rem;
}

/* Google Map Styling */
.map-container {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Department List Styling */
.contact-list {
    list-style: none;
    padding: 0;
}

    .contact-list li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

/* Emergency Section */
.emergency-box {
    background: #fff5f5 !important;
    border-left: 5px solid #e74c3c;
    color: var(--bg-dark);
}

/* Status Badge for Open/Close */
.status-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 10px;
    background: #27ae60;
    color: white;
}

/* Media Queries for Mobile */
@media (max-width: 600px) {
    .content-box {
        padding: 20px;
    }

    h3 {
        font-size: 1.5rem;
    }

    form {
        padding: 15px;
    }
}