/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins','Segoe UI', sans-serif;
    background-color: #f4f7fa;
    color: #2c3e50;
    line-height: 1.6;
  }
  
  /* NAVBAR */
  .custom-navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 0.8rem 0;
    transition: background-color 0.3s ease-in-out;
  }
  
  .navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: #00b894 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .nav-link {
    color: #2d3436 !important;
    margin-left: 1rem;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
  }
  
  .nav-link:hover,
  .nav-link:focus {
    color: #00b894 !important;
    text-decoration: none;
  }
  
  /* DROPDOWNS */
  .dropdown-menu {
    background-color: #fff;
    border: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  }
  
  .dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    transition: background 0.3s;
  }
  
  .dropdown-item:hover {
    background-color: #f1f2f6;
    color: #00b894;
  }
  
  /* BUTTONS */
  .btn-primary {
    background-color: #00b894;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  
  .btn-primary:hover {
    background-color: #019875;
  }
  
  /* HERO SECTION */
  
.navbar-brand {
  font-size: 1.75rem;
  color: #00c08b !important;
  letter-spacing: 1px;
}

.nav-link {
  font-weight: 500;
  color: #333 !important;
  transition: color 0.2s ease-in-out;
}

.nav-link:hover {
  color: #00c08b !important;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #00c08b, #008e6d);
  color: white;
  padding: 120px 0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.25rem;
  margin-top: 15px;
}

.hero .btn-primary {
  background-color: #fff;
  color: #00c08b;
  border: none;
  font-weight: bold;
  padding: 12px 30px;
  transition: all 0.3s ease-in-out;
}

.hero .btn-primary:hover {
  background-color: #eaeaea;
  color: #00c08b;
}

/* How it Works Section */
.how-it-works h2 {
  font-weight: 700;
  margin-bottom: 30px;
}

.how-it-works h4 {
  color: #00c08b;
  font-weight: 600;
}

/* Featured Quizzes */
.featured-quizzes {
  background-color: #fff;
  border-radius: 10px;
  padding: 60px 0;
}

.quiz-card {
  transition: all 0.3s ease;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.quiz-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.quiz-card h5 {
  color: #00c08b;
  font-weight: 600;
}

/* Dropdowns */
.dropdown-menu {
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.dropdown-item:hover {
  background-color: #f0f0ff;
  color: #00c08b;
}
  
  /* FOOTER */
  footer {
    background: #2d3436;
    color: #ffffff;
    padding: 30px 0;
    text-align: center;
    font-size: 0.95rem;
    position: relative;
    bottom: 0;
    width: 100%;
  }
  
  /* RESPONSIVE TWEAKS */
  @media (max-width: 768px) {
    .navbar-brand {
      font-size: 1.5rem;
    }
  
    .hero h1 {
      font-size: 2.2rem;
    }
  
    .nav-link {
      margin-left: 0.5rem;
    }
    
  }
  /* Login Form Styling */
.login-container {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 192, 139, 0.1); /* mint green soft shadow */
  transition: transform 0.3s ease;
}

.login-container:hover {
  transform: translateY(-5px);
}

.login-container h2 {
  font-weight: 700;
  color: #00c08b; /* Mint Green */
  margin-bottom: 25px;
}

.login-container .form-label {
  color: #333;
  font-weight: 500;
}

.login-container .form-control {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 10px 12px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.login-container .form-control:focus {
  border-color: #00c08b;
  box-shadow: 0 0 5px rgba(0, 192, 139, 0.2);
}

.login-container .btn-success {
  background-color: #00c08b;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 10px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.login-container .btn-success:hover {
  background-color: #019b6d;
}

.login-container p {
  font-size: 0.95rem;
}

.login-container a {
  color: #00c08b;
  font-weight: 600;
  text-decoration: none;
}

.login-container a:hover {
  text-decoration: underline;
}
/* Dashboard Container */
.dashboard-container {
  padding: 40px 20px;
  background-color: #f9f9fb;
  min-height: 100vh;
}

/* Dashboard Cards */
.card-dashboard {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 30px 20px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-dashboard i {
  font-size: 3rem;
  color: #00c08b;
  margin-bottom: 15px;
}

.card-dashboard h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.card-dashboard p {
  font-size: 0.95rem;
  color: #666;
}

/* Hover Effect */
/* Hover Effect with SkillMint Green */
.card-dashboard:hover {
  background-color: #00b894; /* SkillMint green */
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(40, 167, 69, 0.2);
}

.card-dashboard:hover i,
.card-dashboard:hover h4,
.card-dashboard:hover p {
  color: #ffffff;
}

/* Set initial icon color */
.card-dashboard i {
  font-size: 40px;
  color: #00b894;  /* SkillMint Green */
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

/* On hover, icon turns white (for contrast on green background) */
.card-dashboard:hover i {
  color: #ffffff;
}

/* Link Reset */
a.text-decoration-none {
  color: inherit;
}
.bi {
  color: #00b894;
}
.quiz-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.quiz-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #00c08b;
}

.quiz-title {
  font-weight: 600;
  font-size: 20px;
  color: #1e1e1e;
  margin-bottom: 10px;
}



.quiz-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quiz-footer i {
  color: #00c08b;
  margin-right: 6px;
}
/* Start Quiz Page Styling */

.quiz-container {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.quiz-title {
  color: #198754; /* SkillMint primary color */
  font-weight: 600;
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.question {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 1rem;
}

.form-check {
  margin-bottom: 0.5rem;
}

.form-check-input {
  border: 2px solid #ccc;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: #198754;
  border-color: #198754;
}

.form-check-label {
  cursor: pointer;
  font-size: 1rem;
  color: #333;
}

.btn-skillmint {
  background-color: #198754;
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 0.75rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.btn-skillmint:hover {
  background-color: #157347;
  color: #fff;
}
.history-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  border: 1px solid #e3e3e3;
}

.history-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
}

.status-pass {
  background-color: #198754;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.status-fail {
  background-color: #dc3545;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.progress {
  background-color: #e9ecef;
  border-radius: 10px;
}

.progress-bar {
  border-radius: 10px;
}

.dashboard-title {
  color: #2c3e50;
  font-weight: bold;
  margin-bottom: 30px;
}

.summary-card {
  background-color: #ffffff;
  border: none;
  border-left: 5px solid #00c08b;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  padding: 20px;
  transition: all 0.3s ease-in-out;
}

.summary-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.summary-icon {
  font-size: 1.5rem;
  color: #00c08b;
  margin-right: 10px;
}

.chart-container {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  padding: 20px;
}

.recent-history-table {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.table thead {
  background-color: #28a745;
  color: #fff;
}

.table tbody tr:hover {
  background-color: #f1f1f1;
}

.sidebar .nav-link {
  color: #444;
  font-weight: 500;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.sidebar .nav-link:hover {
  background-color: #d4edda;
  color: #28a745;
}
/* Optional: Adjust the height if the header is sticky */
.sidebar {
  min-height: calc(100vh - 56px); /* assuming navbar is 56px high */
}

/* Responsive adjustments (already covered by Bootstrap grid) */
@media (max-width: 768px) {
  .sidebar {
    height: auto;
  }
}
.profile-card {
  border: none;
  border-radius: 1.5rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.profile-card:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.profile-image {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-control[disabled] {
  background-color: #f8f9fa;
  opacity: 1;
}
/* Custom style for the back arrow button */
.back-arrow-btn {
  font-size: 30px; /* Larger icon size */
  color: #007bff; /* Cool blue color */
  background-color: transparent; /* Transparent background */
  border: 2px solid #007bff; /* Blue border */
  padding: 10px; /* Padding around the icon */
  border-radius: 50%; /* Circular button */
  transition: all 0.3s ease; /* Smooth transition for hover effect */
}

.back-arrow-btn:hover {
  color: #fff; /* White color on hover */
  background-color: #007bff; /* Blue background on hover */
  transform: scale(1.1); /* Slightly larger on hover */
}

.back-arrow-btn i {
  margin-right: 0; /* No space between the icon and the border */
}
.chart-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  height: 350px;
  overflow: hidden;
  position: relative;
}

.chart-card canvas {
  height: 100% !important;
  width: 100% !important;
}
.pagination {
  margin-top: 20px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  list-style: none;
}

.pagination .page-item {
  margin: 0 5px;
}

.pagination .page-link {
  background-color: #fff;
  border: 1px solid #ddd;
  color: #28a745;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
}

.pagination .page-item.active .page-link {
  background-color: #00c08b;
  border-color: #00c08b;
  color: white;
}

.pagination .page-item:hover .page-link {
  background-color: #eafaf3;
  border-color: #00c08b;
  color: #00c08b;
}

.pagination .page-link:focus {
  outline: none;
  box-shadow: none;
}

/* Custom styles for the previous & next buttons */
.pagination .page-item .page-link.custom-pagination-link {
  padding: 10px 15px;
  font-size: 15px;
}

.pagination .page-link.custom-pagination-link:hover {
  background-color: #eafaf3;
  color: #00c08b;
  border-color: #00c08b;
}
textarea.form-control {
  resize: vertical;
}
.card {
  border-radius: 16px;
}
.feedback-box {
  max-width: 800px;
  margin: auto;
}
/* Dashboard Wrapper */
.skillmint-dashboard {
  background-color: #f8f9fa;
  min-height: 100vh;
}

/* Dashboard Title */
.dashboard-title {
  color: #198754; /* Bootstrap success green */
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Card Styling */
.skillmint-card {
  background-color: #fff;
  border: none;
  border-radius: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  padding: 2rem 1rem;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.skillmint-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 192, 139, 0.2);
}

/* Icon Styling */
.skillmint-icon {
  font-size: 3rem;
  color: #00c08b;
  transition: color 0.3s;
}

.skillmint-card:hover .skillmint-icon {
  color: #008e6d;
}

/* Text Styling */
.card-label {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.card-value {
  font-size: 2rem;
  font-weight: 700;
  color: #212529;
}
/* Page Wrapper */
.skillmint-manage-quizzes {
  background-color: #f9fbfc;
}

/* Title Styling */
.manage-quizzes-title {
  color: #198754;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Card Style */
.skillmint-card {
  background-color: #ffffff;
  border: none;
  border-radius: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Primary Button */
.skillmint-btn-primary {
  background-color: #00c08b;
  border: none;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.skillmint-btn-primary:hover {
  background-color: #009f74;
}

/* Table Styling */
.skillmint-table th {
  color: #343a40;
  font-weight: 600;
}

.skillmint-table td {
  vertical-align: middle;
}

/* Outline Buttons */
.btn-outline-success:hover,
.btn-outline-warning:hover,
.btn-outline-danger:hover {
  color: #fff !important;
}
/* Add Quiz Page */
.skillmint-add-quiz {
  background-color: #f0f4f8;
}

.page-title {
  color: #198754;
  font-weight: 700;
  letter-spacing: 0.4px;
}

/* Card Style */
.skillmint-card {
  background-color: #ffffff;
  border: none;
  border-radius: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Section Heading */
.section-heading {
  color: #041229;
  font-weight: 600;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 0.5rem;
}

/* Form Styling */
.form-label-custom {
  font-weight: 600;
  color: #343a40;
}

.input-custom {
  border-radius: 0.75rem;
  border: 1px solid #ced4da;
  transition: border-color 0.3s;
}

.input-custom:focus {
  border-color: #00c08b;
  box-shadow: 0 0 0 0.15rem rgba(0, 192, 139, 0.25);
}

/* Success Button */
.skillmint-btn-success {
  background-color: #00c08b;
  border: none;
  color: #fff;
  font-weight: 600;
  transition: background-color 0.3s ease-in-out;
}

.skillmint-btn-success:hover {
  background-color: #009f74;
}
.skillmint-quiz-questions .page-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #28a745;
}

.skillmint-quiz-questions .btn i {
  vertical-align: middle;
}

.skillmint-quiz-questions .skillmint-table thead {
  background-color: #f8f9fa;
}

.skillmint-quiz-questions .skillmint-table td {
  vertical-align: middle;
  font-size: 0.95rem;
}

.skillmint-quiz-questions .badge {
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}
/* Layout */
#quiz-questions-page {
  background-color: #f9fbfc;
  font-family: 'Poppins','Segoe UI', sans-serif;
}

#sidebar-wrapper {
  padding-left: 0;
  padding-right: 0;
}

#main-quiz-content {
  padding-right: 2rem;
  padding-left: 2rem;
}

/* Header */
#quiz-header {
  border-bottom: 2px solid #dee2e6;
  padding-bottom: 1rem;
}

.quiz-title {
  font-size: 1.75rem;
}

#add-question-btn {
  font-size: 1rem;
  font-weight: 600;
}

/* Table Styling */
#questions-table {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
}

#questions-table thead {
  background: #28a745;
  color: white;
}

#questions-table tbody tr:hover {
  background-color: #f1f3f5;
  transition: background-color 0.3s ease;
}

.question-row td {
  vertical-align: middle;
  padding: 0.9rem;
}

.action-buttons .btn {
  transition: all 0.2s ease;
}

.edit-btn:hover {
  background-color: #0d6efd;
  color: #fff;
}

.delete-btn:hover {
  background-color: #dc3545;
  color: #fff;
}

/* Empty Message */
#no-questions-msg {
  background-color: #ffffff;
  border-radius: 0.75rem;
  border: 1px dashed #ced4da;
}
.skillmint-add-question {
    background-color: #f9fdfb;
}

.page-title {
    font-weight: 600;
    color: #198754;
}

.skillmint-card {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #dee2e6;
}

.input-custom {
    border-radius: 0.5rem;
    border-color: #ced4da;
    transition: 0.3s ease;
}

.input-custom:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

.skillmint-btn-success {
    background-color: #198754;
    color: #fff;
    border: none;
}

.skillmint-btn-success:hover {
    background-color: #157347;
}
.quiz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.quiz-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quiz-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.quiz-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #222;
}

.quiz-desc {
  font-size: 0.85rem;
  color: #666;
  flex-grow: 1;
}

.quiz-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.quiz-time {
  font-size: 0.75rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 4px;
}

.quiz-btn {
  background-color: #10b981; /* Tailwind green-500 */
  color: white;
  border: none;
  padding: 0.5rem;
  font-size: 0.85rem;
  border-radius: 6px;
  cursor: pointer;
  display: inline-block;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 1.25rem;
  transition: background-color 0.2s ease;
}

.quiz-btn:hover {
  background-color: #059669; /* Tailwind green-600 */
}
.quiz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.quiz-card {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 230px; /* Fixed height for uniform size */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quiz-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.quiz-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.quiz-desc {
  font-size: 0.85rem;
  color: #6b7280;
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.quiz-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
}

.quiz-time {
  font-size: 0.75rem;
  color: #9ca3af;
}

.quiz-btn {
  background-color: #10b981;
  color: white;
  text-decoration: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.quiz-btn:hover {
  background-color: #059669;
}
/* === ADMIN DASHBOARD === */

.admin-dashboard-wrapper {
  background-color: #f8fafc;
  font-family: 'Segoe UI', sans-serif;
}

#adminMainContent {
  background-color: #f9fbfd;
  min-height: 100vh;
}

.admin-greeting h2 {
  font-weight: 700;
  font-size: 1.75rem;
}

.admin-subtext {
  font-size: 0.95rem;
  color: #6c757d;
}

/* Admin Stat Cards */
.admin-card {
  background-color: #ffffff;
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease-in-out;
  padding: 1rem;
}

.admin-card:hover {
  transform: translateY(-2px);
}

.admin-card-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-card-icon {
  font-size: 2rem;
  color: #00c08b;
  margin-right: 0.75rem;
}

.admin-card h6 {
  font-weight: 600;
  margin: 0;
  font-size: 0.95rem;
}

.admin-card p {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

/* Admin Link Cards */
.admin-link-card {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  background-color: #eef2f7;
  border-radius: 0.75rem;
  padding: 1rem;
  text-decoration: none;
  color: #212529;
  transition: background-color 0.2s ease;
  border: 1px solid transparent;
}

.admin-link-card:hover {
  background-color: #dde4ed;
  border-color: #cbd5e1;
}

.admin-link-card i {
  font-size: 1.75rem;
  color: #111827;
}

.admin-link-card h6 {
  font-weight: 600;
  margin: 0;
  font-size: 0.95rem;
}

.admin-link-card p {
  margin: 0;
  font-size: 0.85rem;
  color: #6b7280;
}
.stats-card {
      background: #f8f9fa;
      border-radius: 1rem;
      padding: 1.5rem;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      text-align: center;
      transition: all 0.3s ease;
    }
    .stats-card i {
      font-size: 2rem;
      color: #00b894;
      margin-bottom: 0.5rem;
    }
    .stats-card:hover {
      background: #e9ecef;
    }
    .table thead {
      background-color: #f1f3f5;
    }
    .pagination .page-link {
      color: #00b894;
    }
    .pagination .active .page-link {
      background-color: #00b894;
      color: #fff;
      border: none;
    }


    :root {
    --brand-color: #00c08b;
    --brand-color-light: #e6fff5;
    --brand-color-dark: #008060;
    --font-family-sans-serif: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: var(--font-family-sans-serif);
}

.custom-navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

.custom-navbar .nav-link {
    color: #495057;
    font-weight: 500;
}

.custom-navbar .nav-link:hover {
    color: var(--brand-color);
}

/* New: Register Page Background and Layout */
.register-section {
    background: linear-gradient(135deg, var(--brand-color-light) 0%, #ffffff 100%);
    min-height: calc(100vh - 56px); /* Adjust based on navbar height */
}

/* Branded Title */
.text-brand {
    color: var(--brand-color);
}

/* Branded Button */
.btn-brand {
    background-color: var(--brand-color);
    border: none;
    color: white;
    transition: background-color 0.3s ease;
}

.btn-brand:hover {
    background-color: var(--brand-color-dark);
}

/* General form control styling */
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 192, 139, 0.25);
    border-color: var(--brand-color);
}

/* Link color */
a.text-brand {
    color: var(--brand-color) !important;
}

a.text-brand:hover {
    color: var(--brand-color-dark) !important;
}