/* ===========================
   VictorSky Admin Panel - Light/Dark Theme
   =========================== */

/* Switch Checkbox Styles */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .3s;
    border-radius: 26px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

.switch input:checked + .slider {
    background-color: #10b981;
}

.switch input:checked + .slider:before {
    transform: translateX(24px);
}

/* Dark mode support */
[data-theme="dark"] .slider {
    background-color: #4b5563;
}

[data-theme="dark"] .slider:before {
    background-color: #f3f4f6;
}

[data-theme="dark"] .switch input:checked + .slider {
    background-color: #10b981;
}

:root {
    /* Light Mode Colors */
    --primary-bg: #f9fafb;
    --secondary-bg: white;
    --sidebar-bg: white;
    --card-bg: white;
    --hover-bg: #f3f4f6;
    
    --primary-blue: #4f46e5;
    --secondary-blue: #6366f1;
    --accent-blue: #818cf8;
    --light-blue: #a5b4fc;
    
    --success-green: #10b981;
    --warning-orange: #f59e0b;
    --danger-red: #ef4444;
    --info-purple: #8b5cf6;
    
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    
    --border-color: #e5e7eb;
    
    --sidebar-width: 260px;
    --header-height: 70px;
}

/* Dark Mode Colors */
[data-theme="dark"] {
    --primary-bg: #0f1115;
    --secondary-bg: #1a1d24;
    --sidebar-bg: #16181d;
    --card-bg: #1a1d24;
    --hover-bg: #23262f;
    
    --text-primary: #f9fafb;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    --border-color: #23262f;
    
    --close-btn-filter: invert(1) grayscale(100%) brightness(200%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Prevent horizontal scroll only on desktop (where it's needed for sidebar) */
@media (min-width: 769px) {
    body {
        overflow-x: hidden;
    }
}

/* Bootstrap Gap Utilities */
.g-4 {
    gap: 1.5rem !important;
}

.row.g-4 {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.row.g-4 > * {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

/* ===========================
   Login Page Styles
   =========================== */

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0F1115;
    background: radial-gradient(circle, rgba(15, 17, 21, 1) 0%, rgba(30, 35, 51, 1) 100%);
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.auth-wrapper::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    animation: float 20s infinite ease-in-out;
    filter: blur(25px);
    opacity: 0.8;
}

.auth-wrapper::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    bottom: -250px;
    left: -250px;
    animation: float 25s infinite ease-in-out reverse;
    filter: blur(25px);
    opacity: 0.8;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.auth-card {
    background: white; 
    width: 100%;
    max-width: 440px;
    padding: 48px;
    position: relative;
    z-index: 1;
}

.auth-logo {
    text-align: center;
    margin-bottom: 36px;
}

.auth-logo h1 {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.auth-logo p {
    color: #6b7280;
    font-size: 15px;
    margin: 0;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    color: #374151;
    font-size: 14px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 8px 16px;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0px;
    color: #111827;
    font-size: 15px;
    transition: all 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
    background-color: white;
}

.form-control::placeholder {
    color: #9ca3af;
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #667eea;
}

.form-check-label {
    color: #6b7280;
    font-size: 14px;
    cursor: pointer;
}

.btn {
    border: none;
    border-radius: 0px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #e5e7eb;
}

.btn-secondary:hover {
    background: #e5e7eb;
}

.auth-links {
    text-align: center;
    margin-top: 24px;
}

.auth-links a {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.auth-links a:hover {
    color: #764ba2;
}

.alert {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    border-left: 4px solid;
}

.alert-danger {
    background-color: #fee2e2;
    border-color: #dc2626;
    color: #991b1b;
}

.alert-success {
    background-color: #d1fae5;
    border-color: #10b981;
    color: #065f46;
}

.text-muted {
    color: #9ca3af;
    font-size: 13px;
}

/* ===========================
   Dashboard Layout
   =========================== */

.dashboard-wrapper {
    /* display: flex; */
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--sidebar-bg);
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    overflow-y: hidden;
    overflow-x: hidden;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.sidebar.collapsed {
    margin-left: calc(-1 * var(--sidebar-width));
}

/* Sidebar'ın kendi scroll'u */
.sidebar::-webkit-scrollbar {
    width: 0;
}

/* Sidebar Brand */
.sidebar-brand {
    padding: 20px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--sidebar-bg);
    position: sticky;
    top: 0;
    z-index: 20;
}

.brand-logo {
    width: 40px;
    height: 40px;
    background: var(--gradient-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-logo i {
    font-size: 18px;
    color: white;
}

.brand-text {
    flex: 1;
    min-width: 0;
}

.brand-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.2;
    margin-top: 2px;
}

/* Sidebar Search */
.sidebar-search {
    padding: 12px 16px 16px 16px;
    background-color: var(--sidebar-bg);
    position: relative;
    transition: all 0.2s ease;
}

.sidebar-search.focused {
    background-color: var(--hover-bg);
}

.sidebar-search input {
    width: 100%;
    padding: 9px 32px 9px 34px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 13px;
    background-color: var(--hover-bg);
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.sidebar-search input::placeholder {
    color: var(--text-muted);
}

.sidebar-search input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background-color: var(--secondary-bg);
}

.sidebar-search.focused .search-shortcut {
    opacity: 0;
    transform: translateY(-50%) scale(0.8);
}

.sidebar-search i {
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 13px;
    pointer-events: none;
}

.search-shortcut {
    position: absolute;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
    padding: 3px 7px;
    background-color: var(--border-color);
    color: var(--text-muted);
    border-radius: 5px;
    font-size: 10px;
    font-weight: 600;
    font-family: 'Inter', monospace, sans-serif;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    letter-spacing: 0.5px;
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .search-shortcut {
    background-color: var(--hover-bg);
}

/* Sidebar Menu */
.sidebar-menu {
    padding: 4px 12px 100px 12px;
    flex: 1;
    overflow-y: auto;
}

/* Custom Scrollbar for Sidebar */
.sidebar-menu::-webkit-scrollbar {
    width: 5px;
}

.sidebar-menu::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-menu::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

.sidebar-menu::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Menu Item */
.menu-item {
    display: flex;
    align-items: center;
    padding: 9px 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.15s ease;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    margin-bottom: 1px;
    cursor: pointer;
    position: relative;
}

.menu-item:hover {
    background-color: var(--hover-bg);
    color: var(--text-primary);
}

.menu-item.active {
    background: linear-gradient(90deg, rgba(255, 237, 110, 0.15) 0%, rgba(255, 237, 110, 0.05) 100%);
    color: var(--text-primary) !important;
    font-weight: 600;
}

.menu-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: #ffed6e;
    border-radius: 0 3px 3px 0;
}

[data-theme="dark"] .menu-item.active {
    background: linear-gradient(90deg, rgba(79, 70, 229, 0.2) 0%, rgba(79, 70, 229, 0.05) 100%);
}

[data-theme="dark"] .menu-item.active::before {
    background: var(--primary-blue);
}

.menu-item i {
    margin-right: 11px;
    width: 18px;
    text-align: center;
    font-size: 16px;
    flex-shrink: 0;
}

.menu-item span {
    flex: 1;
}

/* Submenu Item */
.submenu-item {
    padding-left: 41px;
    font-size: 13px;
    font-weight: 500;
}

.submenu-item:hover {
    padding-left: 43px;
}

/* Menu Badge */
.menu-badge {
    padding: 2px 7px;
    background-color: var(--text-primary);
    color: var(--sidebar-bg);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    margin-left: auto;
}

[data-theme="dark"] .menu-badge {
    background-color: var(--text-primary);
    color: var(--sidebar-bg);
}

/* Menu Divider */
.menu-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 8px 12px;
    opacity: 0.5;
}

/* Menu Section Label */
.menu-section-label {
    padding: 12px 12px 6px 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Menu Group */
.menu-group {
    margin-bottom: 6px;
}

.menu-group-header {
    display: flex;
    align-items: center;
    padding: 9px 12px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    margin-bottom: 1px;
}

.menu-group-header:hover {
    background-color: var(--hover-bg);
}

.menu-group-header i:first-child {
    margin-right: 11px;
    width: 18px;
    text-align: center;
    font-size: 16px;
    flex-shrink: 0;
}

.menu-group-header span {
    flex: 1;
}

.menu-group-header .toggle-icon {
    font-size: 10px;
    transition: transform 0.2s ease;
    color: var(--text-muted);
}

.menu-group-header.active .toggle-icon {
    transform: rotate(180deg);
}

.menu-group-items {
    display: none;
    padding: 2px 0;
    animation: slideDown 0.2s ease;
}

.menu-group-items.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Menu Subgroup */
.menu-subgroup {
    margin-bottom: 1px;
}

.menu-subgroup-header {
    display: flex;
    align-items: center;
    padding: 7px 12px 7px 29px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    margin-bottom: 1px;
}

.menu-subgroup-header:hover {
    background-color: var(--hover-bg);
    color: var(--text-primary);
}

.menu-subgroup-header span {
    flex: 1;
}

.menu-subgroup-header .toggle-icon {
    font-size: 9px;
    transition: transform 0.2s ease;
    color: var(--text-muted);
}

.menu-subgroup-header.active .toggle-icon {
    transform: rotate(180deg);
}

.menu-subgroup-items {
    display: none;
    padding: 1px 0;
    animation: slideDown 0.2s ease;
}

.menu-subgroup-items.show {
    display: block;
}

/* Sidebar Footer */
.sidebar-footer {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    border-top: 1px solid var(--border-color);
    background-color: var(--sidebar-bg);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background-color: transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.user-info:hover {
    background-color: var(--hover-bg);
}

.user-avatar {
    width: 38px;
    height: 38px;
    background: var(--gradient-blue);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.user-details {
    flex: 1;
    min-width: 0;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.user-role {
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    margin-top: 1px;
}

.user-info i {
    font-size: 10px;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

.user-info:hover i {
    transform: rotate(180deg);
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    transition: all 0.3s ease;
}

.main-content.expanded {
    margin-left: 0;
}

/* Header */
.header {
    height: var(--header-height);
    background-color: var(--sidebar-bg);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.sidebar-toggle {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.sidebar-toggle:hover {
    background-color: var(--hover-bg);
    color: var(--text-primary);
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-toggle:hover {
    background-color: var(--hover-bg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    min-width: 200px;
    display: none;
    margin-top: 8px;
    z-index: 1001;
    overflow: hidden;
}

.dropdown.show .dropdown-menu {
    display: block;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

.dropdown-item:hover {
    background-color: var(--hover-bg);
}

.dropdown-item i {
    width: 18px;
    color: var(--text-secondary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Theme Toggle Button */
.theme-toggle {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    background-color: var(--hover-bg);
    color: var(--text-primary);
}

/* Content Area */
.content {
    padding: 32px;
    background-color: var(--primary-bg);
    min-height: calc(100vh - var(--header-height));
}

.page-header {
    margin-bottom: 32px;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.page-description {
    color: var(--text-secondary);
    font-size: 15px;
}

.card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0px;
    padding: 24px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-blue);
}

.card-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Stat Card */
.stat-card {
    background: var(--card-bg);
    border-radius: 0px;
    padding: 24px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px; 
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 16px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.stat-change {
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
}

.stat-change.positive {
    background-color: #d1fae5;
    color: #059669;
}

.stat-change.negative {
    background-color: #fee2e2;
    color: #dc2626;
}

/* Responsive Design */
/* Mobile Overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.show {
    display: block;
    opacity: 1;
}

@media (max-width: 768px) {
    .sidebar {
        margin-left: calc(-1 * var(--sidebar-width));
        z-index: 1000;
    }
    
    .sidebar.show {
        margin-left: 0;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .header {
        padding: 0 16px;
    }
    
    .header-left > div:first-of-type {
        display: none !important;
    }
    
    .content {
        padding: 20px 16px;
    }
    
    .auth-card {
        margin: 15px;
        padding: 30px 20px;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .stat-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Smooth Transitions */
* {
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

/* Utility Classes */
.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.text-center {
    text-align: center !important;
}

/* ===========================
   SweetAlert2 Custom Styles
   =========================== */

.swal2-popup {
    border-radius: 16px !important;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    background: var(--card-bg) !important;
    color: var(--text-primary) !important;
}

.swal2-title {
    color: var(--text-primary) !important;
    font-size: 24px !important;
    font-weight: 700 !important;
}

.swal2-html-container {
    color: var(--text-secondary) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

.swal2-confirm {
    background: #3b82f6 !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    font-size: 14px !important;
}

.swal2-confirm:hover {
    background: #2563eb !important;
}

.swal2-cancel {
    background: #6b7280 !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    font-size: 14px !important;
}

.swal2-cancel:hover {
    background: #4b5563 !important;
}

.swal2-icon.swal2-warning {
    border-color: #f59e0b !important;
    color: #f59e0b !important;
}

.swal2-icon.swal2-error {
    border-color: #ef4444 !important;
    color: #ef4444 !important;
}

.swal2-icon.swal2-success {
    border-color: #10b981 !important;
    color: #10b981 !important;
}

.swal2-icon.swal2-info {
    border-color: #3b82f6 !important;
    color: #3b82f6 !important;
}

.swal2-icon.swal2-question {
    border-color: #8b5cf6 !important;
    color: #8b5cf6 !important;
}
