/* Dashboard Styles */
:root {
  --primary: #4e73df;
  --success: #1cc88a;
  --info: #36b9cc;
  --warning: #f6c23e;
  --danger: #e74a3b;
  --secondary: #858796;
  --light: #f8f9fc;
  --dark: #5a5c69;
  --transition: all 0.3s ease;
}
body{
  font-family: 'nunito', sans-serif;
  font-size: 18px;
}
/* Layout Styles */
.content-wrapper {
  background: #f8f9fc;
  padding: 1.5rem;
}

/* Card Styles */
.small-box {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 0.15rem 1.75rem rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.small-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
}

.small-box .inner {
  padding: 1.5rem;
}

.small-box .inner h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
  padding: 0;
  color: #fff;
}

.small-box .inner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.small-box .icon {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 70px;
  color: rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}

.small-box:hover .icon {
  font-size: 75px;
  transform: rotate(5deg);
}

.small-box .small-box-footer {
  position: relative;
  text-align: center;
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.1);
  text-decoration: none;
  z-index: 10;
  display: block;
  transition: var(--transition);
}

.small-box .small-box-footer:hover {
  background: rgba(0, 0, 0, 0.15);
  color: #fff;
}

.small-box .small-box-footer i {
  margin-left: 5px;
  transition: var(--transition);
}

.small-box:hover .small-box-footer i {
  transform: translateX(4px);
}

/* Color Variants with Gradients */
.bg-info {
  background: linear-gradient(135deg, #36b9cc 0%, #1a8eaf 100%) !important;
}

.bg-success {
  background: linear-gradient(135deg, #1cc88a 0%, #13855c 100%) !important;
}

.bg-warning {
  background: linear-gradient(135deg, #f6c23e 0%, #dda20a 100%) !important;
}

.bg-danger {
  background: linear-gradient(135deg, #e74a3b 0%, #be2617 100%) !important;
}

/* Breadcrumb Styles */
.content-header {
  padding: 1rem 0;
  margin-bottom: 1rem;
}

.content-header h1 {
  font-family: 'nunito';
  font-size: 1.8rem;
  margin: 0;
  font-weight: 00;
  color: var(--dark);
}

.breadcrumb {
  background: transparent;
  margin-bottom: 0;
  padding: 0;
  font-size: 0.9rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--secondary);
}

.breadcrumb-item.active {
  color: var(--primary);
}

/* Sidebar Styles */
.sidebar-mini .nav-sidebar .nav-link {
  padding: 0.8rem 1rem;
  color: #fff;
  transition: var(--transition);
}

.sidebar-mini .nav-sidebar .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.sidebar-mini .nav-sidebar .nav-link.active {
  background: rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-wrapper {
  animation: fadeIn 0.5s ease-out;
}

.small-box {
  animation: fadeIn 0.5s ease-out;
  animation-fill-mode: both;
}

.small-box:nth-child(1) { animation-delay: 0.1s; }
.small-box:nth-child(2) { animation-delay: 0.2s; }
.small-box:nth-child(3) { animation-delay: 0.3s; }
.small-box:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Styles */
@media (max-width: 767.98px) {
  .small-box {
    text-align: center;
  }
  
  .small-box .icon {
    display: none;
  }
  
  .small-box .inner h3 {
    font-size: 2rem;
  }
  
  .content-header h1 {
    font-size: 1.5rem;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #3a5bc7;
} 

