/* General styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    text-align: center;
    padding: 20px;
    background-color: #2a3d66;
    color: white;
}

h1, h2 {
    margin-bottom: 10px;
}

p {
    font-size: 1.1em;
}

a {
    text-decoration: none;
    color: #2a3d66;
}

a:hover {
    text-decoration: underline;
}

.gallery {
    padding: 20px;
    background-color: white;
    text-align: center;
}

.featured-image {
    max-width: 100%;
    height: auto;
    border: 2px solid #ddd;
    margin-bottom: 10px;
}

.thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.thumbnails img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #ddd;
    cursor: pointer;
}

.thumbnails img:hover {
    opacity: 0.7;
}

.description {
    padding: 20px;
    background-color: #fff;
    margin-top: 20px;
}

.incident-report {
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
}

.incident-details {
    padding: 20px;
    background-color: #fff;
}

.incident-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 10px 0;
}

.contact {
    margin-top: 2em;
    background-color: #f0f0f0;
    padding: 1em;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact input, .contact textarea {
    margin-bottom: 1em;
    padding: 0.5em;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.contact button {
    padding: 0.5em;
    border: none;
    background-color: #0055aa;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    width: max-content;
    align-self: center;
    margin-top: 1em;
}

.contact button:disabled {
    background-color: #aaa;
    cursor: not-allowed;
}

.contact button:not(:disabled) {
    background-color: #0055aa;
    cursor: pointer;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.close-button {
    float: right;
    font-size: 2rem;
    cursor: pointer;
}

.hidden {
    display: none !important;
}

