/* Custom Dialog Styles */
.custom-dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.2s ease;
}

.custom-dialog-overlay.active {
    display: flex;
}

.custom-dialog {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
    animation: slideIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-20px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.dialog-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.dialog-title {
    font-size: 1.5rem;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.dialog-message {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.dialog-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.dialog-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.dialog-btn-confirm {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
}

.dialog-btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(76, 205, 196, 0.4);
}

.dialog-btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #e0e0e0;
}

.dialog-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .custom-dialog {
        padding: 1.5rem;
    }

    .dialog-buttons {
        flex-direction: column;
    }

    .dialog-btn {
        width: 100%;
    }
}
