/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    animation: scaleUp 0.3s forwards;
    position: relative;
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--brand-primary);
}

.modal-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.modal-icon svg {
    width: 48px;
    height: 48px;
}

.sucess-icon {
    color: #10B981;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.3));
}

.error-icon {
    color: #EF4444;
    filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.3));
}

#modalTitle {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

#modalMessage {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes scaleUp {
    to {
        transform: scale(1);
    }
}