/* MODAL STYLES */
.modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}
.modal.show {
    display: flex;
}
.modal__content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.5);
    max-width: 800px;
    width: 90vw;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    padding: 2rem;
}
.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 1rem;
}
.modal__title {
    font-size: 1.2rem;
    font-weight: bold;
}
.modal__close {
    cursor: pointer;
    background: none;
    border: none;
    font-size: 2rem;
    color: #333;
}
body.modal-open {
    overflow: hidden;
}
@media (max-width: 768px) {
    .modal__content {
        width: 98vw;
        padding: 1rem;
    }
}
