/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}

.modal__content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal__content img {
    max-height: 80vh;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.modal__caption {
    margin-top: 1rem;
    color: #fff;
    text-align: center;
    font-size: 1rem;
}

.modal__close {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #fff;
    color: #333;
    border: none;
    font-size: 2rem;
    padding: 4px 12px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10002;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}