.alert-photos {
    display: flex;
    flex-wrap: wrap;
}

.alert-photo {
    margin: 10px;
}

.alert-photo img {
    max-width: 200px;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.animal-photos {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-photo {
    margin-bottom: 20px;
}

.main-photo img {
    width: 100%;
    max-width: 500px;
}

.thumbnail-photos {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 395px;
}

.thumbnail img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumbnail img:hover {
    border: 2px solid #007bff;
}

#map {
    height: 350px;
}