/* Base Styles */
body {
  background-color: #f8f9fa;
  padding-top: 56px;
  font-family: 'Cairo', sans-serif;
}

/* Navbar */
.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* Cards */
.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.2s ease-in-out,
    box-shadow 0.2s;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-header {
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1rem 1.25rem;
}

/* Forms */
.form-control {
  border-radius: 5px;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(69, 104, 220, 0.25);
  border: 1px solid #dee2e6;
  padding: 0.75rem 1rem;
}

/* Buttons */
.btn {
  border-radius: 5px;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.2s;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2a5e 100%);
  transform: translateY(-2px);
  border-color: #0a58ca;
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Badges */
.badge {
  font-weight: 500;
  padding: 0.4em 0.7em;
  border-radius: 0.35rem;
}

/* Task Status Colors */
.badge.bg-primary {
  background-color: #0d6efd !important;
}

.badge.bg-success {
  background-color: #198754 !important;
}

/* List Groups */
.list-group-item {
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item-action:hover {
  background-color: #f8f9fa;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .card {
    margin-bottom: 1rem;
  }
}

/* Enhanced Footer */
footer {
  background-color: #343a40;
  color: #fff;
  padding: 0.5em 0.8em;
  font-size: 0.85em;
}

/* Toast Notifications */
.toast-notification {
  letter-spacing: 0.5px;
  border-radius: 0.5rem;
  font-weight: 500;
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  background: white;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateX(120%);
  transition: transform 0.3s ease;
  z-index: 1050;
}

.toast-notification.show {
  transform: translateX(0);
}

.toast-notification i {
  font-size: 1.25rem;
}

.toast-notification.success {
  border-left: 4px solid #28a745;
}

.toast-notification.error {
  border-left: 4px solid #dc3545;
}

.toast-notification.info {
  border-left: 4px solid #17a2b8;
}

/* Loading Animation */
.loading-spinner {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Responsive Typography */
@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
}

/* Stats Cards */
.stats-card {
  border-radius: 1rem;
  border: none;
  transition: transform 0.2s;
}

.stats-card:hover {
  transform: translateY(-5px);
}

.stats-icon {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  font-size: 2.5rem;
  opacity: 0.1;
}

/* Enhanced Stats Cards */
.stats-card {
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
}

.stats-card .card-body {
  padding: 1.5rem;
  position: relative;
}

.stats-card .card-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stats-card .stats-icon {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  font-size: 3rem;
  opacity: 0.2;
}

/* Project Cards */
.project-card {
  border: none;
  border-radius: 1rem;
  transition: all 0.3s;
  border-top: 4px solid var(--primary);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.project-card.priority-high {
  border-top-color: var(--danger);
}

.project-card.priority-medium {
  border-top-color: var(--warning);
}

.project-card.priority-low {
  border-top-color: var(--info);
}

/* Priority Indicators */
.priority-high {
  border-left: 4px solid #dc3545;
}
.priority-medium {
  border-left: 4px solid #ffc107;
}
.priority-low {
  border-left: 4px solid #198754;
}

/* Notification Dropdown */
.notification-dropdown {
  width: 320px;
  padding: 0;
  max-height: 400px;
  overflow-y: auto;
}

.notification-item {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #eee;
  transition: background-color 0.2s;
}

.notification-item:hover {
  background-color: #f8f9fa;
}

/* Notification Styles */
.notification-item {
  padding: 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s;
}

.notification-item.unread {
  background-color: rgba(13, 110, 253, 0.05);
  border-left: 4px solid #0d6efd;
}

.notification-item:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.notification-item h5 {
  color: #333;
  font-size: 1.1rem;
}

.notification-item p {
  color: #666;
  margin-bottom: 0.5rem;
}

/* Ratings Styles */
.rating-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.rating-input label {
  cursor: pointer;
  font-size: 1.5rem;
  color: #ddd;
  margin-right: 5px;
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label {
  color: #ffc107;
}

.rating-input input {
  display: none;
}

.ratings .fa-star {
  margin-right: 2px;
}

/* Comments Section */
.comments-list {
  max-height: 400px;
  overflow-y: auto;
}

.comment-item {
  padding: 0.5rem 0;
}

/* Add new styles for improved UI */
.admin-dashboard-card {
  border-radius: 10px;
  transition: transform 0.2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.admin-dashboard-card:hover {
  transform: translateY(-5px);
}

.department-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.department-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-item .badge {
  position: relative;
  top: -8px;
  right: 5px;
  font-size: 0.7rem;
}

/* Improved dropdown menu styling */
.dropdown-menu {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  min-width: 12rem;
}

.dropdown-item {
  padding: 0.5rem 1rem;
  transition: all 0.2s;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  transform: translateX(5px);
}

.dropdown-item i {
  width: 20px;
  margin-right: 8px;
}

/* Department view improvements */
.department-header {
  background: linear-gradient(to right, #4a90e2, #357abd);
  color: white;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.member-card {
  border: none;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* RTL Support for Arabic */
.rtl {
  direction: rtl;
  text-align: right;
}

/* Top Navigation Styles */
.topbar .navbar-nav .nav-item {
  margin: 0 0.25rem;
}

.topbar .navbar-nav .nav-link {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s;
}

.topbar .navbar-nav .nav-link:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.35rem;
}

.topbar .navbar-nav .nav-link i {
  margin-right: 0.5rem;
}

.topbar .navbar-nav .nav-link span {
  font-weight: 500;
}

/* RTL specific navigation adjustments */
.rtl .topbar .navbar-nav .nav-link i {
  margin-right: 0;
  margin-left: 0.5rem;
}

/* Make dropdown menus wider for Arabic text */
.dropdown-menu {
  min-width: 12rem;
}

/* New Styles */
:root {
  --primary: #4568dc;
  --primary-dark: #2e3f75;
  --secondary: #858796;
  --success: #1cc88a;
  --info: #36b9cc;
  --warning: #f6c23e;
  --danger: #e74a3b;
  --light: #f8f9fc;
  --dark: #5a5c69;
}

html,
body {
  height: 100%;
  font-family: 'Cairo', sans-serif;
}

body {
  background-color: #f8f9fc;
  display: flex;
  flex-direction: column;
}

#wrapper {
  display: flex;
}

.sidebar {
  width: 280px;
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  background-size: cover;
  transition: width 0.3s ease;
}

.sidebar-dark .sidebar-brand {
  color: #fff;
}

.sidebar-brand {
  height: 4.375rem;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 1.5rem 1rem;
  text-align: center;
  letter-spacing: 0.05rem;
  z-index: 1;
}

.sidebar .nav-item .nav-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.8rem 1rem;
  margin: 0.2rem 0;
  border-radius: 5px;
  width: 14rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s;
}

.sidebar .nav-item .nav-link i {
  margin-right: 0.5rem;
  width: 20px;
  text-align: center;
}

.sidebar .nav-item .nav-link.active {
  color: #fff;
  font-weight: 700;
}

.sidebar .nav-item .nav-link:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateX(-5px);
}

.sidebar-heading {
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  font-size: 0.65rem;
  margin: 1rem 1rem 0.5rem;
  font-weight: 700;
}

.sidebar-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 1rem 1rem 1rem;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
}

.topbar {
  height: 4.375rem;
  background-color: #fff;
  box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}

.navbar-nav .nav-item.dropdown .dropdown-toggle::after {
  content: none;
}

.dropdown-list {
  width: 20rem !important;
}

.dropdown-header {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #fff;
}

.img-profile {
  height: 2rem;
  width: 2rem;
}

.progress-circle {
  position: relative;
  height: 150px;
  width: 150px;
  margin: 0 auto;
}

.progress-circle-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: bold;
}

/* Project card styles */
.project-card {
  transition: transform 0.2s ease-in-out;
  border-top: 4px solid var(--primary);
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card.priority-high {
  border-top-color: var(--danger);
}

.project-card.priority-medium {
  border-top-color: var(--warning);
}

.project-card.priority-low {
  border-top-color: var(--info);
}

/* Task card styles */
.task-card {
  margin-bottom: 0.75rem;
}

.task-card .card-body {
  padding: 0.75rem;
}

/* Risk matrix styles */
.risk-matrix {
  border-collapse: collapse;
}

.risk-cell {
  width: 60px;
  height: 60px;
  border: 1px solid #fff;
  text-align: center;
  position: relative;
}

.low {
  background-color: var(--success);
}

.medium {
  background-color: var(--warning);
}

.high {
  background-color: var(--danger);
}

.extreme {
  background-color: #660000;
}

/* Eisenhower matrix styles */
.eisenhower-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
  height: 800px;
}

.matrix-quadrant {
  background-color: #fff;
  border-radius: 0.35rem;
  padding: 1rem;
  box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
  overflow: auto;
}

.quadrant-1 {
  border-top: 4px solid var(--danger);
}

.quadrant-2 {
  border-top: 4px solid var(--warning);
}

.quadrant-3 {
  border-top: 4px solid var(--primary);
}

.quadrant-4 {
  border-top: 4px solid var(--secondary);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .sidebar {
    width: 0;
    overflow-y: auto;
    overflow-x: hidden;
    position: fixed;
    z-index: 999;
    height: 100%;
  }

  .sidebar.toggled {
    width: 280px;
  }

  .eisenhower-matrix {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    height: auto;
  }
}

/* Login/Signup Pages */
.auth-card {
  max-width: 450px;
  margin: 2rem auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: none;
}

.auth-card .card-header {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  border-radius: 15px 15px 0 0;
  padding: 1.5rem;
}

.auth-card .card-body {
  padding: 2rem;
}

.auth-card .form-control {
  padding: 0.7rem 1rem;
  font-size: 1rem;
}

/* Dashboard Cards */
.stat-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: none;
}

.stat-card .card-body {
  padding: 1.5rem;
}

.stat-card .card-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--secondary);
}

.stat-card .stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
}

.stat-card .stat-icon {
  font-size: 2.5rem;
  opacity: 0.3;
}

/* Animation Effects */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

/* Custom colors for badges */
.badge {
  font-weight: 500;
  padding: 0.4em 0.7em;
  border-radius: 0.35rem;
}
/* RoboVAI Core System Modern UI/UX Upgrade */

:root {
    /* RoboVAI Color Palette */
    --primary-color: #2563EB;
    --primary-hover: #1D4ED8;
    --secondary-color: #F8FAFC;
    --accent-color: #10B981;
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --sidebar-bg: #0B1120;
    --sidebar-hover: rgba(37, 99, 235, 0.15);
    
    /* UI Scale and Shadows */
    --border-radius-lg: 20px;
    --border-radius-md: 12px;
    --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: #F1F5F9;
    color: var(--text-dark);
}

/* Glassmorphism Sidebar */
.sidebar {
    background: var(--sidebar-bg) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
}

.sidebar .nav-link {
    border-radius: var(--border-radius-md);
    margin-bottom: 5px;
    transition: all 0.3s ease;
    color: #94A3B8 !important;
    font-weight: 600;
}

.sidebar .nav-link:hover {
    background: var(--sidebar-hover);
    color: white !important;
    transform: translateX(-5px);
}

.sidebar .nav-link.active {
    background: var(--primary-color) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.sidebar .sidebar-heading {
    color: #475569 !important;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* Glassmorphism Navbar */
.navbar, .bg-white.shadow-sm {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color) !important;
    box-shadow: var(--glass-shadow) !important;
}

/* Cards Upgrade */
.card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.08);
}

.card-header {
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    padding: 20px 25px;
    font-weight: 700;
}

/* Standardized Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #3B82F6);
    border: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, var(--accent-color), #059669);
    border: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    font-weight: 700;
}

/* Inputs */
.form-control, .form-select {
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    padding: 12px 15px;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Dashboard Statistics Cards */
.stat-card {
    padding: 25px;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.stat-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}
/* RoboVAI Core System Modern UI/UX Upgrade */

:root {
    /* RoboVAI Color Palette */
    --primary-color: #2563EB;
    --primary-hover: #1D4ED8;
    --secondary-color: #F8FAFC;
    --accent-color: #10B981;
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --sidebar-bg: #0B1120;
    --sidebar-hover: rgba(37, 99, 235, 0.15);
    
    /* UI Scale and Shadows */
    --border-radius-lg: 20px;
    --border-radius-md: 12px;
    --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: #F1F5F9;
    color: var(--text-dark);
}

/* Glassmorphism Sidebar */
.sidebar {
    background: var(--sidebar-bg) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
}

.sidebar .nav-link {
    border-radius: var(--border-radius-md);
    margin-bottom: 5px;
    transition: all 0.3s ease;
    color: #94A3B8 !important;
    font-weight: 600;
}

.sidebar .nav-link:hover {
    background: var(--sidebar-hover);
    color: white !important;
    transform: translateX(-5px);
}

.sidebar .nav-link.active {
    background: var(--primary-color) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.sidebar .sidebar-heading {
    color: #475569 !important;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* Glassmorphism Navbar */
.navbar, .bg-white.shadow-sm {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color) !important;
    box-shadow: var(--glass-shadow) !important;
}

/* Cards Upgrade */
.card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.08);
}

.card-header {
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    padding: 20px 25px;
    font-weight: 700;
}

/* Standardized Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #3B82F6);
    border: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, var(--accent-color), #059669);
    border: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    font-weight: 700;
}

/* Inputs */
.form-control, .form-select {
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    padding: 12px 15px;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Dashboard Statistics Cards */
.stat-card {
    padding: 25px;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.stat-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

/* Smooth Page Transitions */
.page-transition-enter {
    animation: fadeInTrans 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.page-transition-leave {
    animation: fadeOutTrans 0.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInTrans {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutTrans {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}
