:root {
  --primary-color: hsl(204, 83%, 39%);
  --secondary-color: #2c3e50;
  --success-color: #2ecc71;
  --danger-color: #e74c3c;
  --warning-color: #f39c12;
  --light-color: #ecf0f1;
  --dark-color: #34495e;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f7fa;
  color: #333;
  line-height: 1.6;
}


/* Navbar */
.navbar {
  /* background-color: var(--secondary-color) !important; */
  background-color: rgb(3, 17, 33) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

.nav-link {
  font-weight: 500;
}

/* Cards */
.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-header {
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 10px 10px 0 0 !important;
  padding: 15px 20px;
}

/* Buttons */
.btn {
  border-radius: 6px;
  padding: 8px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #2980b9;
  border-color: #2980b9;
}

/* Forms */
.form-control {
  border-radius: 6px;
  padding: 10px 15px;
  border: 1px solid #ddd;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

/* Alerts */
.alert {
  border-radius: 6px;
  padding: 12px 20px;
}

/* Dashboard Widgets */
.widget {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.widget:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Tables */
.table {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
}

.table th {
  background-color: var(--secondary-color);
  color: white;
  border: none;
}

/* Sidebar (if needed) */
.sidebar {
  background-color: var(--secondary-color);
  color: white;
  min-height: 100vh;
}

.sidebar .nav-link {
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 15px;
  margin: 5px 0;
  border-radius: 5px;
}

.sidebar .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.sidebar .nav-link.active {
  background-color: var(--primary-color);
  color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sidebar {
    min-height: auto;
  }
}

/* Profile images in tables */
.table img {
    object-fit: cover;
    border: 2px solid #dee2e6;
}

/* Action buttons */
.btn-group-sm .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
}
#small-td {
 font-size: smaller;
}
/* Table row hover effect */
.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

/* Navbar profile image */
.navbar .dropdown-toggle img {
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.navbar .dropdown-toggle:hover img {
    border-color: rgba(255, 255, 255, 0.7);
}

/* Default user icon in navbar */
.navbar .rounded-circle.bg-secondary {
    line-height: 0;
}

/* Slider Styles */
#loginSlider {
    max-width: 800px;
    margin: 0 auto 20px;
}

.carousel-item img {
    height: 400px;
    object-fit: cover;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-item img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .carousel-item img {
        height: 200px;
    }
}

/* Bulk actions section */
.bulk-actions {
    padding: 10px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* Checkbox styling */
#select-all {
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.record-checkbox {
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.selected-count {
    font-size: 0.9rem;
    color: #6c757d;
    vertical-align: middle;
}

th[data-column], td[data-column] {
    transition: all 0.3s ease;
}

/* 
/* Chart containers */
/* .card {
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    font-weight: 600;
} */ */

/* Responsive chart sizing */
canvas {
    width: 100% !important;
    height: auto !important;
    max-height: 300px;
}

/* Dashboard grid layout */
.row {
    margin-bottom: 15px;
}