@font-face {
    font-family: liAdorFont;
    src: url(https://cdn.jsdelivr.net/gh/hscbmt/img@main/Ekush-Regular.ttf) format("truetype");
    font-display: swap;
    font-weight: 600;
    font-style: semiBold
}


:root {
    --primary-color: #00A76F;
    --primary-dark: #007867;
    --background-light: #F9FAFB;
    --background-dark: #161C24;
    --card-light: #ffffff;
    --card-dark: #212B36;
    --text-light: #212B36;
    --text-dark: #ffffff;
    --text-secondary: #637381;
    --input-light: #f5f5f5;
    --input-dark: #2d2d2d;
}

body {
    font-family: 'liAdorFont', 'Inter', sans-serif;
    background-color: var(--background-light);
    transition: all 0.3s ease;
    padding-top: 80px;
    color: var(--text-light);
}

body.dark-mode {
    background-color: var(--background-dark);
    color: var(--text-dark);
}

.navbar {
    background: var(--card-light);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(145, 158, 171, 0.12);
    transition: all 0.3s ease;
    padding: 0.75rem 0;
}

.dark-mode .navbar {
    background: rgba(33, 43, 54, 0.8);
    border-bottom: 1px solid rgba(145, 158, 171, 0.12);
}

.navbar-brand {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
}

.dark-mode .navbar-brand {
    color: var(--text-dark);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    color: var(--text-light);
    background-color: rgba(145, 158, 171, 0.12);
    border-radius: 8px;
}

.dark-mode .navbar-toggler {
    color: var(--text-dark);
    background-color: rgba(145, 158, 171, 0.2);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler i {
    font-size: 1.5rem;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link:focus {
    color: var(--primary-color);
    background-color: rgba(0, 167, 111, 0.08);
}

.nav-link.active {
    color: var(--primary-color);
    background-color: rgba(0, 167, 111, 0.08);
}

.dark-mode .nav-link {
    color: rgba(255, 255, 255, 0.7);
}

.dark-mode .nav-link:hover, 
.dark-mode .nav-link:focus,
.dark-mode .nav-link.active {
    color: var(--primary-color);
    background-color: rgba(0, 167, 111, 0.16);
}

@media (max-width: 991.98px) {
    body {
        padding-top: 66px;
    }
    
    .navbar-collapse {
        background: var(--card-light);
        border-radius: 0 0 16px 16px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 66px;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 1rem;
    }
    
    .dark-mode .navbar-collapse {
        background: var(--card-dark);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }
    
    .navbar-nav {
        margin-bottom: 1rem !important;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        margin-bottom: 0.25rem;
    }
}

.theme-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(145, 158, 171, 0.12);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.dark-mode .theme-toggle {
    background: rgba(145, 158, 171, 0.2);
    color: var(--text-dark);
}

.dropdown-menu {
    border-radius: 12px;
    border: 1px solid rgba(145, 158, 171, 0.12);
    box-shadow: 0 0 2px rgba(145, 158, 171, 0.2);
    padding: 0.5rem;
}

.dropdown-item {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(0, 167, 111, 0.08);
    color: var (--primary-color);
}

.page-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.dark-mode .page-title {
    color: var(--text-dark);
}

/* Add new gradients */
.gradient-1 {
    background: linear-gradient(135deg, #36B9FF 0%, #3697FF 100%);
}

.gradient-2 {
    background: linear-gradient(135deg, #FF3366 0%, #FF6666 100%);
}

.gradient-3 {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.gradient-4 {
    background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
}

.stats-card {
    background: var(--card-light);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(145, 158, 171, 0.12);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.dark-mode .stats-card {
    background: var(--card-dark);
}

.stats-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.stats-number {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stats-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.welcome-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    padding: 2rem;
    color: white;
    margin-bottom: 2rem;
}

.notification-card {
    background: var(--card-light);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.dark-mode .notification-card {
    background: var(--card-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.form-control {
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.dark-mode .form-control {
    background: #2d2d2d;
    color: var(--text-dark);
}

.form-control:focus {
    background: #ffffff;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.dark-mode .form-control:focus {
    background: #3d3d3d;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.history-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.dark-mode .history-item {
    background: rgba(255, 255, 255, 0.05);
}

.history-item:hover {
    transform: translateX(5px);
}

.preview-image {
    max-width: 200px;
    border-radius: 8px;
    margin-top: 1rem;
}

.mobile-preview {
    width: 300px;
    height: 600px;
    background: #f8f9fa;
    border-radius: 30px;
    position: relative;
    margin: 2rem auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 8px solid #333;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dark-mode .mobile-preview {
    background: #1a1a1a;
    border-color: #444;
}

.mobile-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 20px;
    background: #333;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.mobile-screen {
    height: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px;
}

.notification-preview {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    position: relative;
}

.dark-mode .notification-preview {
    background: #2d2d2d;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.notification-preview.show {
    transform: translateY(0);
    opacity: 1;
}

.notification-preview .app-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    margin-right: 8px;
}

.notification-preview .app-name {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.dark-mode .notification-preview .app-name {
    color: #fff;
}

.notification-preview .notification-time {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 8px;
}

.dark-mode .notification-preview .notification-time {
    color: #aaa;
}

.notification-preview .notification-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.dark-mode .notification-preview .notification-title {
    color: #fff;
}

.notification-preview .notification-body {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

.dark-mode .notification-preview .notification-body {
    color: #aaa;
}

.notification-preview .notification-image {
    width: 100%;
    border-radius: 8px;
    margin-top: 8px;
    display: none;
}

.notification-preview .notification-image.show {
    display: block;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
    font-size: 0.75rem;
    color: #666;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dark-mode .status-bar {
    color: #aaa;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}
.config-card {
    background: var(--card-light);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.dark-mode .config-card {
    background: var(--card-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.form-control {
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.dark-mode .form-control {
    background: #2d2d2d;
    color: var(--text-dark);
}

.form-control:focus {
    background: #ffffff;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.dark-mode .form-control:focus {
    background: #3d3d3d;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.dark-mode .section-title {
    color: var(--text-dark);
}

.help-text {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

.dark-mode .help-text {
    color: #adb5bd;
}

.alert {
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}
.admin-card {
    background: var(--card-light);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.dark-mode .admin-card {
    background: var(--card-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.form-control {
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.dark-mode .form-control {
    background: #2d2d2d;
    color: var(--text-dark);
}

.form-control:focus {
    background: #ffffff;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.dark-mode .form-control:focus {
    background: #3d3d3d;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.dark-mode .section-title {
    color: var(--text-dark);
}

.admin-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dark-mode .admin-item {
    background: rgba(255, 255, 255, 0.05);
}

.admin-info {
    flex-grow: 1;
}

.admin-name {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.admin-email {
    color: #6c757d;
    font-size: 0.875rem;
}

.dark-mode .admin-email {
    color: #adb5bd;
}

.admin-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-icon {
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    transform: translateY(-2px);
}

.modal-content {
    background: var(--card-light);
    border-radius: 16px;
    border: none;
}

.dark-mode .modal-content {
    background: var(--card-dark);
}

.modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dark-mode .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.dark-mode .modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.profile-card {
    background: var(--card-light);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.dark-mode .profile-card {
    background: var(--card-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.form-control {
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.dark-mode .form-control {
    background: #2d2d2d;
    color: var(--text-dark);
}

.form-control:focus {
    background: #ffffff;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.dark-mode .form-control:focus {
    background: #3d3d3d;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.dark-mode .section-title {
    color: var(--text-dark);
}

/* Login Page Specific Styles */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(at 80% 0%, rgba(0, 167, 111, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(54, 185, 255, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 100%, rgba(145, 64, 249, 0.1) 0px, transparent 50%);
    opacity: 0.7;
    z-index: -1;
}

.dark-mode .background-pattern {
    opacity: 0.3;
}

.page-wrapper {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.login-container {
    background: var(--card-light);
    border-radius: 24px;
    padding: 2.5rem;
    width: 100%;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(145, 158, 171, 0.08);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.dark-mode .login-container {
    background: var(--card-dark);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    height: 120px;
    width: auto;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.dark-mode .form-title {
    color: var(--text-dark);
}

.form-subtitle {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.login-form .form-floating {
    margin-bottom: 1.25rem;
}

.login-form .form-control {
    border: 1px solid rgba(145, 158, 171, 0.32);
    border-radius: 12px;
    padding: 1rem 0.75rem;
    height: 52px;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    background: rgba(145, 158, 171, 0.08);
}

.dark-mode .login-form .form-control {
    background: rgba(145, 158, 171, 0.08);
    border-color: rgba(145, 158, 171, 0.12);
}

.login-form .form-control:focus {
    border-color: var(--primary-color);
    background: transparent;
    box-shadow: 0 0 0 2px rgba(0, 167, 111, 0.2);
}

.login-form .form-floating label {
    padding: 1rem 0.75rem;
    color: var(--text-secondary);
}

.btn-login {
    height: 48px;
    font-weight: 600;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--primary-color);
}

.btn-login:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-login i {
    transition: transform 0.3s ease;
}

.btn-login:hover i {
    transform: translateX(4px);
}

.alert {
    border-radius: 12px;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.alert-danger {
    background: rgba(255, 72, 66, 0.12);
    color: #FF4842;
}

.dark-mode .alert-danger {
    background: rgba(255, 72, 66, 0.24);
}

@media (max-width: 480px) {
    .login-container {
        padding: 2rem;
        border-radius: 20px;
    }

    .form-title {
        font-size: 1.25rem;
    }

    .logo {
        height: 120px;
    }
}

/* Dropdown Menu Styling */
.dropdown-menu {
    background-color: var(--card-light);
    border: 1px solid rgba(145, 158, 171, 0.12);
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    min-width: 180px;
    margin-top: 0.5rem;
}

.dark-mode .dropdown-menu {
    background-color: var(--card-dark);
    border: 1px solid rgba(145, 158, 171, 0.2);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
    color: var(--text-light);
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dark-mode .dropdown-item {
    color: var(--text-dark);
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: rgba(145, 158, 171, 0.08);
    color: var(--primary-color);
}

.dark-mode .dropdown-item:hover, .dark-mode .dropdown-item:focus {
    background-color: rgba(145, 158, 171, 0.16);
}

.dropdown-divider {
    border-top: 1px solid rgba(145, 158, 171, 0.12);
    margin: 0.25rem 0;
}

.dark-mode .dropdown-divider {
    border-top: 1px solid rgba(145, 158, 171, 0.2);
}

/* Card Styling */
.card {
    background-color: var(--card-light);
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dark-mode .card {
    background-color: var(--card-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.card-header {
    background-color: transparent;
    border-bottom: 1px solid rgba(145, 158, 171, 0.12);
    padding: 1.25rem 1.5rem;
    font-weight: 600;
}

.dark-mode .card-header {
    border-bottom: 1px solid rgba(145, 158, 171, 0.2);
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    background-color: transparent;
    border-top: 1px solid rgba(145, 158, 171, 0.12);
    padding: 1.25rem 1.5rem;
}

.dark-mode .card-footer {
    border-top: 1px solid rgba(145, 158, 171, 0.2);
}

/* Form Controls */
.form-control, .form-select {
    background-color: var(--input-light);
    border: 1px solid rgba(145, 158, 171, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.dark-mode .form-control, .dark-mode .form-select {
    background-color: var(--input-dark);
    border: 1px solid rgba(145, 158, 171, 0.3);
    color: var(--text-dark);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 167, 111, 0.1);
}

.dark-mode .form-control:focus, .dark-mode .form-select:focus {
    box-shadow: 0 0 0 3px rgba(0, 167, 111, 0.2);
}

/* Button Styling */
.btn {
    border-radius: 8px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #00966a;
    border-color: #00966a;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Welcome Section */
.welcome-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--card-light);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dark-mode .welcome-section {
    background-color: var(--card-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Stats Card */
.stats-card {
    background-color: var(--card-light);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.dark-mode .stats-card {
    background-color: var(--card-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stats-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stats-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .welcome-section {
        padding: 1.25rem;
    }
    
    .stats-card {
        padding: 1.25rem;
    }
    
    .card-body {
        padding: 1.25rem;
    }
}

/* Alerts */
.alert {
    border-radius: 12px;
    padding: 1rem 1.25rem;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dark-mode .alert {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.alert-success {
    background-color: rgba(0, 167, 111, 0.1);
    color: #00966a;
}

.alert-danger {
    background-color: rgba(255, 72, 66, 0.1);
    color: #FF4842;
}

.alert-warning {
    background-color: rgba(255, 171, 0, 0.1);
    color: #B76E00;
}

.alert-info {
    background-color: rgba(0, 184, 217, 0.1);
    color: #006C9C;
}

.dark-mode .alert-success {
    background-color: rgba(0, 167, 111, 0.2);
}

.dark-mode .alert-danger {
    background-color: rgba(255, 72, 66, 0.2);
}

.dark-mode .alert-warning {
    background-color: rgba(255, 171, 0, 0.2);
}

.dark-mode .alert-info {
    background-color: rgba(0, 184, 217, 0.2);
}

/* Table Styling */
.table {
    width: 100%;
    margin-bottom: 1rem;
    color: var(--text-light);
    vertical-align: middle;
}

.dark-mode .table {
    color: var(--text-dark);
}

.table th {
    font-weight: 600;
    padding: 0.75rem;
    border-bottom: 1px solid rgba(145, 158, 171, 0.12);
}

.table td {
    padding: 0.75rem;
    border-bottom: 1px solid rgba(145, 158, 171, 0.12);
}

.dark-mode .table th,
.dark-mode .table td {
    border-bottom: 1px solid rgba(145, 158, 171, 0.2);
}

.table-hover tbody tr:hover {
    background-color: rgba(145, 158, 171, 0.08);
}

.dark-mode .table-hover tbody tr:hover {
    background-color: rgba(145, 158, 171, 0.16);
}

/* Action Cards */
.action-card {
    background-color: var(--card-light);
    border-radius: 16px;
    padding: 1.75rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(145, 158, 171, 0.12);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dark-mode .action-card {
    background-color: var(--card-dark);
    border: 1px solid rgba(145, 158, 171, 0.2);
}

.action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.dark-mode .action-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.action-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
    color: white;
}

.gradient-primary {
    background: linear-gradient(135deg, #00A76F 0%, #00C590 100%);
}

.gradient-info {
    background: linear-gradient(135deg, #0085FF 0%, #00B1FF 100%);
}

.gradient-warning {
    background: linear-gradient(135deg, #FFA500 0%, #FFB74D 100%);
}

.action-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.dark-mode .action-title {
    color: var(--text-dark);
}

.action-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.dark-mode .action-text {
    color: rgba(255, 255, 255, 0.7);
}

.action-footer {
    border-top: 1px solid rgba(145, 158, 171, 0.12);
    padding-top: 1rem;
    margin-top: auto;
}

.dark-mode .action-footer {
    border-top: 1px solid rgba(145, 158, 171, 0.2);
}

.action-link {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.action-card:hover .action-link i {
    transform: translateX(4px);
}

.action-link i {
    transition: transform 0.3s ease;
}
.compact-card {
    padding: 1rem;
    margin-bottom: 0.75rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.compact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.compact-card .card-title {
    font-size: 0.925rem;
    margin-bottom: 0.5rem;
}

.compact-card .card-text {
    font-size: 0.875rem;
    line-height: 1.4;
}

.preview-image {
    max-height: 150px;
    width: auto;
    border-radius: 4px;
    margin-top: 0.75rem;
}

.mobile-preview {
    width: 300px;
    height: 600px;
    background: #f8f9fa;
    border-radius: 30px;
    position: relative;
    margin: 2rem auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 8px solid #333;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dark-mode .mobile-preview {
    background: #1a1a1a;
    border-color: #444;
}

.mobile-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 20px;
    background: #333;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.mobile-screen {
    height: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px;
}

.notification-preview {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    position: relative;
}

.dark-mode .notification-preview {
    background: #2d2d2d;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.notification-preview.show {
    transform: translateY(0);
    opacity: 1;
}

.notification-preview .app-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    margin-right: 8px;
}

.notification-preview .app-name {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.dark-mode .notification-preview .app-name {
    color: #fff;
}

.notification-preview .notification-time {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 8px;
}

.dark-mode .notification-preview .notification-time {
    color: #aaa;
}

.notification-preview .notification-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.dark-mode .notification-preview .notification-title {
    color: #fff;
}

.notification-preview .notification-body {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

.dark-mode .notification-preview .notification-body {
    color: #aaa;
}

.notification-preview .notification-image {
    width: 100%;
    border-radius: 8px;
    margin-top: 8px;
    display: none;
}

.notification-preview .notification-image.show {
    display: block;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
    font-size: 0.75rem;
    color: #666;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dark-mode .status-bar {
    color: #aaa;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}
.config-card {
    background: var(--card-light);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.dark-mode .config-card {
    background: var(--card-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.form-control {
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.dark-mode .form-control {
    background: #2d2d2d;
    color: var(--text-dark);
}

.form-control:focus {
    background: #ffffff;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.dark-mode .form-control:focus {
    background: #3d3d3d;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.dark-mode .section-title {
    color: var(--text-dark);
}

.help-text {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

.dark-mode .help-text {
    color: #adb5bd;
}

.alert {
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}
.admin-card {
    background: var(--card-light);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.dark-mode .admin-card {
    background: var(--card-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.form-control {
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.dark-mode .form-control {
    background: #2d2d2d;
    color: var(--text-dark);
}

.form-control:focus {
    background: #ffffff;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.dark-mode .form-control:focus {
    background: #3d3d3d;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.dark-mode .section-title {
    color: var(--text-dark);
}

.admin-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dark-mode .admin-item {
    background: rgba(255, 255, 255, 0.05);
}

.admin-info {
    flex-grow: 1;
}

.admin-name {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.admin-email {
    color: #6c757d;
    font-size: 0.875rem;
}

.dark-mode .admin-email {
    color: #adb5bd;
}

.admin-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-icon {
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    transform: translateY(-2px);
}

.modal-content {
    background: var(--card-light);
    border-radius: 16px;
    border: none;
}

.dark-mode .modal-content {
    background: var(--card-dark);
}

.modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dark-mode .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.dark-mode .modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.profile-card {
    background: var(--card-light);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.dark-mode .profile-card {
    background: var(--card-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.form-control {
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.dark-mode .form-control {
    background: #2d2d2d;
    color: var(--text-dark);
}

.form-control:focus {
    background: #ffffff;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.dark-mode .form-control:focus {
    background: #3d3d3d;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.dark-mode .section-title {
    color: var(--text-dark);
}

/* Login Page Specific Styles */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(at 80% 0%, rgba(0, 167, 111, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(54, 185, 255, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 100%, rgba(145, 64, 249, 0.1) 0px, transparent 50%);
    opacity: 0.7;
    z-index: -1;
}

.dark-mode .background-pattern {
    opacity: 0.3;
}

.page-wrapper {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.login-container {
    background: var(--card-light);
    border-radius: 24px;
    padding: 2.5rem;
    width: 100%;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(145, 158, 171, 0.08);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.dark-mode .login-container {
    background: var(--card-dark);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    height: 120px;
    width: auto;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.dark-mode .form-title {
    color: var(--text-dark);
}

.form-subtitle {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.login-form .form-floating {
    margin-bottom: 1.25rem;
}

.login-form .form-control {
    border: 1px solid rgba(145, 158, 171, 0.32);
    border-radius: 12px;
    padding: 1rem 0.75rem;
    height: 52px;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    background: rgba(145, 158, 171, 0.08);
}

.dark-mode .login-form .form-control {
    background: rgba(145, 158, 171, 0.08);
    border-color: rgba(145, 158, 171, 0.12);
}

.login-form .form-control:focus {
    border-color: var(--primary-color);
    background: transparent;
    box-shadow: 0 0 0 2px rgba(0, 167, 111, 0.2);
}

.login-form .form-floating label {
    padding: 1rem 0.75rem;
    color: var(--text-secondary);
}

.btn-login {
    height: 48px;
    font-weight: 600;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--primary-color);
}

.btn-login:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-login i {
    transition: transform 0.3s ease;
}

.btn-login:hover i {
    transform: translateX(4px);
}

.alert {
    border-radius: 12px;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.alert-danger {
    background: rgba(255, 72, 66, 0.12);
    color: #FF4842;
}

.dark-mode .alert-danger {
    background: rgba(255, 72, 66, 0.24);
}

@media (max-width: 480px) {
    .login-container {
        padding: 2rem;
        border-radius: 20px;
    }

    .form-title {
        font-size: 1.25rem;
    }

    .logo {
        height: 120px;
    }
}

/* Dropdown Menu Styling */
.dropdown-menu {
    background-color: var(--card-light);
    border: 1px solid rgba(145, 158, 171, 0.12);
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    min-width: 180px;
    margin-top: 0.5rem;
}

.dark-mode .dropdown-menu {
    background-color: var(--card-dark);
    border: 1px solid rgba(145, 158, 171, 0.2);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
    color: var(--text-light);
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dark-mode .dropdown-item {
    color: var(--text-dark);
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: rgba(145, 158, 171, 0.08);
    color: var(--primary-color);
}

.dark-mode .dropdown-item:hover, .dark-mode .dropdown-item:focus {
    background-color: rgba(145, 158, 171, 0.16);
}

.dropdown-divider {
    border-top: 1px solid rgba(145, 158, 171, 0.12);
    margin: 0.25rem 0;
}

.dark-mode .dropdown-divider {
    border-top: 1px solid rgba(145, 158, 171, 0.2);
}

/* Card Styling */
.card {
    background-color: var(--card-light);
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dark-mode .card {
    background-color: var(--card-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.card-header {
    background-color: transparent;
    border-bottom: 1px solid rgba(145, 158, 171, 0.12);
    padding: 1.25rem 1.5rem;
    font-weight: 600;
}

.dark-mode .card-header {
    border-bottom: 1px solid rgba(145, 158, 171, 0.2);
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    background-color: transparent;
    border-top: 1px solid rgba(145, 158, 171, 0.12);
    padding: 1.25rem 1.5rem;
}

.dark-mode .card-footer {
    border-top: 1px solid rgba(145, 158, 171, 0.2);
}

/* Form Controls */
.form-control, .form-select {
    background-color: var(--input-light);
    border: 1px solid rgba(145, 158, 171, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.dark-mode .form-control, .dark-mode .form-select {
    background-color: var(--input-dark);
    border: 1px solid rgba(145, 158, 171, 0.3);
    color: var(--text-dark);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 167, 111, 0.1);
}

.dark-mode .form-control:focus, .dark-mode .form-select:focus {
    box-shadow: 0 0 0 3px rgba(0, 167, 111, 0.2);
}

/* Button Styling */
.btn {
    border-radius: 8px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #00966a;
    border-color: #00966a;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Welcome Section */
.welcome-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--card-light);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dark-mode .welcome-section {
    background-color: var(--card-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Stats Card */
.stats-card {
    background-color: var(--card-light);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.dark-mode .stats-card {
    background-color: var(--card-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stats-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stats-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .welcome-section {
        padding: 1.25rem;
    }
    
    .stats-card {
        padding: 1.25rem;
    }
    
    .card-body {
        padding: 1.25rem;
    }
}

/* Alerts */
.alert {
    border-radius: 12px;
    padding: 1rem 1.25rem;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dark-mode .alert {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.alert-success {
    background-color: rgba(0, 167, 111, 0.1);
    color: #00966a;
}

.alert-danger {
    background-color: rgba(255, 72, 66, 0.1);
    color: #FF4842;
}

.alert-warning {
    background-color: rgba(255, 171, 0, 0.1);
    color: #B76E00;
}

.alert-info {
    background-color: rgba(0, 184, 217, 0.1);
    color: #006C9C;
}

.dark-mode .alert-success {
    background-color: rgba(0, 167, 111, 0.2);
}

.dark-mode .alert-danger {
    background-color: rgba(255, 72, 66, 0.2);
}

.dark-mode .alert-warning {
    background-color: rgba(255, 171, 0, 0.2);
}

.dark-mode .alert-info {
    background-color: rgba(0, 184, 217, 0.2);
}

/* Table Styling */
.table {
    width: 100%;
    margin-bottom: 1rem;
    color: var(--text-light);
    vertical-align: middle;
}

.dark-mode .table {
    color: var(--text-dark);
}

.table th {
    font-weight: 600;
    padding: 0.75rem;
    border-bottom: 1px solid rgba(145, 158, 171, 0.12);
}

.table td {
    padding: 0.75rem;
    border-bottom: 1px solid rgba(145, 158, 171, 0.12);
}

.dark-mode .table th,
.dark-mode .table td {
    border-bottom: 1px solid rgba(145, 158, 171, 0.2);
}

.table-hover tbody tr:hover {
    background-color: rgba(145, 158, 171, 0.08);
}

.dark-mode .table-hover tbody tr:hover {
    background-color: rgba(145, 158, 171, 0.16);
}

/* Action Cards */
.action-card {
    background-color: var(--card-light);
    border-radius: 16px;
    padding: 1.75rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(145, 158, 171, 0.12);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dark-mode .action-card {
    background-color: var(--card-dark);
    border: 1px solid rgba(145, 158, 171, 0.2);
}

.action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.dark-mode .action-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.action-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
    color: white;
}