/* ============================================
   Theme: Apex-Predator
   Component: Confirm Modal (Colors/Visuals only)
   Glassmorphism: backdrop-filter on content
   ============================================ */

.gr-modal-wrap {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(8px);
}

.gr-modal-content {
    background: rgba(5, 5, 5, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 60, 0, 0.4);
    backdrop-filter: blur(12px);
}

.gr-modal-content::before {
    background: linear-gradient(90deg, transparent, #ff3c00, transparent);
}

.gr-modal-header {
    color: #ff3c00;
}

.gr-modal-body {
    color: #fff;
    opacity: 0.9;
}

.gr-modal-btn.btn-primary {
    background: #ff3c00;
    color: #fff;
    box-shadow: 0 8px 25px rgba(255, 60, 0, 0.4);
}

.gr-modal-btn.btn-primary:hover {
    box-shadow: 0 12px 35px rgba(255, 60, 0, 0.6);
}

.gr-modal-btn.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #aaa;
    border: 1px solid rgba(255, 255, 255, 0.1);
}


/* Loading Overlay */
.gr-loading-spinner { border-top-color: #ff3c00; }
.gr-loading-text { color: #ff3c00; }
