/* Modern UI CSS */

:root {
    --primary-color: #0d6efd;
    --success-color: #198754;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #0dcaf0;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --border-color: #dee2e6;
}

body[data-theme="dark"] {
    --bg-primary: #212529;
    --bg-secondary: #343a40;
    --text-primary: #ffffff;
    --text-secondary: #adb5bd;
    --border-color: #495057;
}

body {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.card {
    background-color: var(--bg-primary);
    border-color: var(--border-color);
    transition: all 0.3s ease;
}

.navbar {
    background: linear-gradient(135deg, var(--primary-color), #0056b3) !important;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    color: white;
    border-radius: 15px;
}

.quick-action-btn {
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.quick-action-btn:hover {
    transform: scale(1.05);
}

.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050;
}

/* Remove the old theme switcher */
.theme-switcher {
    display: none;
}
