/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    animation: modalIn 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .modal-content {
        margin: 20px;
        padding: 20px;
        max-height: 90vh;
        overflow-y: auto;
    }
}