/* Style the dialog backdrop for large images of plant petals */

dialog::backdrop {
    background: rgba(0, 0, 0, 0.8);
}

dialog {
    border: none;
    border-radius: 8px;
    padding: 0;
    background: transparent;
    max-height: 90vh;
}

/* Ensure the image fits */
#modalImage {
    display: block;
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}

.gallery-item {
    width: 100%;
    max-width: 380px;
    border: 2px solid red;
    border-radius: 25px;
}

#modalCaption {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
    width: 100%;
    font-family: sans-serif;
    /* Optional: Round the bottom corners to match the modal */
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
