@charset "UTF-8";
.top-navbar {
  height: 64px;
  background: #FFFFFF;
  border-bottom: 1px solid #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 900;
  transition: all 0.25s ease;
}
.top-navbar .navbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.top-navbar .navbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-navbar .page-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1;
}

.sidebar-toggle-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid #e8edf4;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
  flex-shrink: 0;
  padding: 0;
}
.sidebar-toggle-btn i[data-lucide] {
  width: 18px;
  height: 18px;
  color: #64748b;
  transition: all 0.15s ease;
}
.sidebar-toggle-btn:hover {
  background: #FFF7ED;
  border-color: #fcd9bc;
}
.sidebar-toggle-btn:hover i[data-lucide] {
  color: #EA580C;
}
.sidebar-toggle-btn:focus {
  outline: none;
  box-shadow: none;
}

.navbar-bell {
  position: relative;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid #e8edf4;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
}
.navbar-bell i[data-lucide] {
  width: 18px;
  height: 18px;
  color: #64748b;
  transition: all 0.15s ease;
}
.navbar-bell .bell-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 17px;
  height: 17px;
  background: #DC2626;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  line-height: 1;
}
.navbar-bell:hover {
  background: #FFF7ED;
  border-color: #fcd9bc;
}
.navbar-bell:hover i[data-lucide] {
  color: #EA580C;
}

.notification-dropdown .dropdown-menu {
  width: 320px;
  padding: 0;
  border: 1px solid #f1f5f9;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  margin-top: 8px !important;
}
.notification-dropdown .notif-header {
  padding: 14px 18px;
  border-bottom: 1px solid #f1f5f9;
  font-weight: 700;
  color: #0f172a;
  font-size: 0.9rem;
}
.notification-dropdown .notif-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid #f8fafc;
  text-decoration: none !important;
  transition: all 0.15s ease;
}
.notification-dropdown .notif-item:hover {
  background: #fafbfc;
}
.notification-dropdown .notif-item img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.notification-dropdown .notif-item .notif-text {
  flex: 1;
}
.notification-dropdown .notif-item .notif-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 2px;
}
.notification-dropdown .notif-item .notif-text p {
  margin: 0 0 2px;
  font-size: 0.78rem;
  color: #475569;
}
.notification-dropdown .notif-item .notif-text small {
  font-size: 0.7rem;
  color: #94A3B8;
}
.notification-dropdown .notif-item .notif-dot {
  width: 8px;
  height: 8px;
  background: #EA580C;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.notification-dropdown .notif-footer {
  padding: 11px 18px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: #EA580C;
  text-decoration: none;
  display: block;
  transition: all 0.15s ease;
}
.notification-dropdown .notif-footer:hover {
  background: #FFF7ED;
}

.navbar-user {
  position: relative;
}
.navbar-user .user-avatar-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 4px 8px 4px 4px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all 0.15s ease;
}
.navbar-user .user-avatar-wrap:hover {
  background: #FFF7ED;
  border-color: #fcd9bc;
}
.navbar-user .user-avatar-wrap img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fcd9bc;
}
.navbar-user .user-avatar-wrap .user-info {
  display: none;
}
@media (min-width: 768px) {
  .navbar-user .user-avatar-wrap .user-info {
    display: block;
  }
}
.navbar-user .user-avatar-wrap .user-info .user-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.2;
}
.navbar-user .user-avatar-wrap .user-info .user-role {
  font-size: 0.7rem;
  color: #94A3B8;
}
.navbar-user .dropdown-menu {
  min-width: 180px;
  border: 1px solid #f1f5f9;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  margin-top: 8px !important;
  padding: 6px;
}
.navbar-user .dropdown-menu .dropdown-item {
  padding: 9px 12px;
  font-size: 0.845rem;
  font-weight: 500;
  color: #475569;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.15s ease;
}
.navbar-user .dropdown-menu .dropdown-item i[data-lucide] {
  width: 15px;
  height: 15px;
  color: #94a3b8;
}
.navbar-user .dropdown-menu .dropdown-item:hover {
  background: #f8fafc;
  color: #1e293b;
}
.navbar-user .dropdown-menu .dropdown-item.text-danger {
  color: #DC2626;
}
.navbar-user .dropdown-menu .dropdown-item.text-danger i[data-lucide] {
  color: #DC2626;
}
.navbar-user .dropdown-menu .dropdown-item.text-danger:hover {
  background: #fff5f5;
}
.navbar-user .dropdown-menu .dropdown-divider {
  margin: 4px 0;
  border-color: #f1f5f9;
}

.mobile-sidebar-btn {
  display: none;
}
@media (max-width: 991.98px) {
  .mobile-sidebar-btn {
    display: flex;
  }
}

.desktop-sidebar-btn {
  display: flex;
}
@media (max-width: 991.98px) {
  .desktop-sidebar-btn {
    display: none;
  }
}

.sidebar {
  width: 260px;
  background: #FFFFFF;
  border-right: 1px solid #F1F5F9;
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  transition: all 0.25s ease;
  z-index: 1000;
  overflow: hidden;
}
.sidebar.collapsed {
  width: 72px;
}
.sidebar.collapsed .sidebar-header {
  padding: 20px 0;
  justify-content: center;
}
.sidebar.collapsed .sidebar-header .brand-text {
  display: none;
}
.sidebar.collapsed .menu-label {
  opacity: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.sidebar.collapsed .menu-item {
  justify-content: center;
  padding: 11px 0;
  margin: 2px 8px;
}
.sidebar.collapsed .menu-item span {
  display: none;
}
.sidebar.collapsed .menu-item .menu-arrow {
  display: none;
}
.sidebar.collapsed .menu-item i[data-lucide] {
  margin-right: 0;
}
.sidebar.collapsed .menu-dropdown > .menu-sub {
  display: none !important;
}
.sidebar.collapsed .menu-item {
  position: relative;
}
.sidebar.collapsed .menu-item:hover::after {
  content: attr(data-title);
  position: absolute;
  left: calc(72px - 8px);
  top: 50%;
  transform: translateY(-50%);
  background: #1e293b;
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  z-index: 9999;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sidebar-header {
  padding: 18px 20px;
  border-bottom: 1px solid #F1F5F9;
  display: flex;
  align-items: center;
  min-height: 64px;
  flex-shrink: 0;
}

.sidebar-menu {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 12px 0 20px;
}
.sidebar-menu::-webkit-scrollbar {
  width: 4px;
}
.sidebar-menu::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 10px;
}

.menu-item {
  padding: 10px 14px 10px 18px;
  display: flex;
  align-items: center;
  color: #475569;
  text-decoration: none !important;
  font-weight: 500;
  font-size: 0.865rem;
  transition: all 0.15s ease;
  margin: 2px 10px;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
  position: relative;
}
.menu-item i[data-lucide] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-right: 18px;
  color: #94a3b8;
  transition: all 0.15s ease;
}
.menu-item span {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: opacity 0.2s ease;
}
.menu-item .menu-arrow {
  width: 16px;
  height: 16px;
  min-width: 16px;
  color: #cbd5e1;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.menu-item:hover {
  background: #f8fafc;
  color: #EA580C;
}
.menu-item:hover i[data-lucide] {
  color: #EA580C;
}
.menu-item:hover .menu-arrow {
  color: #EA580C;
}
.menu-item.active {
  background: #FFF7ED;
  color: #EA580C;
  font-weight: 600;
}
.menu-item.active i[data-lucide] {
  color: #EA580C;
}
.menu-item.active .menu-arrow {
  color: #EA580C;
}
.menu-item.open {
  color: #EA580C;
  background: #fef9f6;
}
.menu-item.open i[data-lucide] {
  color: #EA580C;
}
.menu-item.open .menu-arrow {
  transform: rotate(90deg);
  color: #EA580C;
}

.menu-sub {
  display: none;
  flex-direction: column;
  margin: 2px 0;
  background: transparent;
  overflow: hidden;
}
.menu-sub.show {
  display: flex;
}
.menu-sub .menu-sub-item {
  padding: 9px 16px 9px 48px;
  display: flex;
  align-items: center;
  color: #475569;
  text-decoration: none !important;
  font-size: 0.835rem;
  font-weight: 500;
  transition: all 0.15s ease;
  border-radius: 6px;
  margin: 1px 10px;
  gap: 12px;
}
.menu-sub .menu-sub-item i[data-lucide] {
  width: 15px;
  height: 15px;
  min-width: 15px;
  color: #b0bec5;
  transition: all 0.15s ease;
}
.menu-sub .menu-sub-item:hover {
  background: #FFF7ED;
  color: #EA580C;
  padding-left: 44px;
}
.menu-sub .menu-sub-item:hover i[data-lucide] {
  color: #EA580C;
}
.menu-sub .menu-sub-item.active {
  background: #FFF7ED;
  color: #EA580C;
  font-weight: 600;
}
.menu-sub .menu-sub-item.active i[data-lucide] {
  color: #EA580C;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  z-index: 999;
  backdrop-filter: blur(2px);
}
.sidebar-overlay.show {
  display: block;
}

@media (max-width: 991.98px) {
  .sidebar {
    transform: translateX(-100%);
    width: 260px !important;
  }
  .sidebar.mobile-open {
    transform: translateX(0);
  }
  .sidebar.collapsed {
    width: 260px !important;
  }
  .sidebar.collapsed .brand-text {
    display: block !important;
  }
  .sidebar.collapsed .menu-label {
    opacity: 1 !important;
    height: auto !important;
    padding: 14px 22px 6px !important;
  }
  .sidebar.collapsed .menu-item {
    justify-content: flex-start !important;
    padding: 10px 14px 10px 18px !important;
  }
  .sidebar.collapsed .menu-item span {
    display: block !important;
  }
  .sidebar.collapsed .menu-item .menu-arrow {
    display: block !important;
  }
  .sidebar.collapsed .menu-item i[data-lucide] {
    margin-right: 12px !important;
  }
  .sidebar.collapsed .menu-item:hover::after {
    display: none;
  }
  .sidebar.collapsed .menu-dropdown > .menu-sub {
    display: flex !important;
  }
}
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8fafc;
  padding: 16px;
}

.auth-card {
  background: #ffffff;
  padding: 28px 32px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  width: 100%;
  max-width: 420px;
}
.auth-card .logo {
  text-align: center;
  margin-bottom: 12px;
}
.auth-card h2 {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}
.auth-card .form-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 6px;
}
.auth-card .form-control,
.auth-card .form-select {
  height: 48px;
  padding: 10px 16px;
  font-size: 0.95rem;
  border: 2px solid #F1F5F9;
  border-radius: 10px;
  background-color: #fff;
  color: #0F172A;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  font-family: "Plus Jakarta Sans", sans-serif;
  background-image: none !important;
}
.auth-card .form-control::placeholder,
.auth-card .form-select::placeholder {
  color: #94a3b8;
  font-size: 0.875rem;
}
.auth-card .form-control:hover:not(:disabled),
.auth-card .form-select:hover:not(:disabled) {
  border-color: rgba(234, 88, 12, 0.4);
}
.auth-card .form-control:focus,
.auth-card .form-select:focus {
  outline: none;
  border-color: #EA580C;
  box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.1);
  background-color: #fff;
  background-image: none !important;
}
.auth-card .form-control.is-valid,
.auth-card .form-select.is-valid {
  border-color: #22c55e !important;
  box-shadow: none !important;
  background-image: none !important;
  padding-right: 16px !important;
}
.auth-card .form-control.is-valid:focus,
.auth-card .form-select.is-valid:focus {
  border-color: #22c55e !important;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12) !important;
}
.auth-card .form-control.is-invalid,
.auth-card .form-select.is-invalid {
  border-color: #ef4444 !important;
  box-shadow: none !important;
  background-image: none !important;
  padding-right: 16px !important;
}
.auth-card .form-control.is-invalid:focus,
.auth-card .form-select.is-invalid:focus {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12) !important;
}
.auth-card .form-select {
  appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748B' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") no-repeat right 16px center !important;
  padding-right: 45px !important;
}
.auth-card .form-select.is-valid, .auth-card .form-select.is-invalid {
  background-position: right 16px center !important;
  padding-right: 45px !important;
}
.auth-card .password-field {
  position: relative;
  display: block;
  width: 100%;
}
.auth-card .password-field .form-control {
  padding-right: 48px !important;
}
.auth-card .password-field .toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  color: #64748b;
  padding: 0;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.auth-card .password-field .toggle-password:hover {
  color: #EA580C;
}
.auth-card .password-field .toggle-password svg {
  width: 18px;
  height: 18px;
  display: block;
}
.auth-card .field-feedback {
  font-size: 0.8125rem;
  font-weight: 500;
  margin-top: 5px;
  min-height: 0;
  line-height: 1.4;
  transition: color 0.2s ease;
}
.auth-card .field-feedback.show-error {
  color: #ef4444;
}
.auth-card .field-feedback.show-success {
  color: #22c55e;
}
.auth-card .field-feedback:empty {
  margin-top: 0;
}
.auth-card .auth-alert {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}
.auth-card .auth-alert.auth-alert-danger {
  background-color: rgba(239, 68, 68, 0.08);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.auth-card .auth-alert.auth-alert-success {
  background-color: rgba(34, 197, 94, 0.08);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

html {
  scroll-behavior: smooth;
}

.landing-navbar {
  height: 70px;
  background: #fff;
  border-bottom: 1px solid #F1F5F9;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.landing-navbar .navbar-brand {
  text-decoration: none;
}
.landing-navbar .navbar-brand .brand-name {
  font-size: 1rem;
  font-weight: 800;
  color: #EA580C;
  line-height: 1.2;
}
.landing-navbar .navbar-brand .brand-name span {
  color: #EA580C;
}
.landing-navbar .navbar-brand .brand-sub {
  font-size: 0.65rem;
  color: #0F172A;
  margin-top: 3px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.landing-navbar .nav-link-item {
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.15s ease;
}
.landing-navbar .nav-link-item:hover {
  color: #EA580C;
  background: #FFF7ED;
}
.landing-navbar .btn-register {
  background: #EA580C;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
  border: none;
}
.landing-navbar .btn-register:hover {
  background: #C2410C;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}
.landing-navbar .btn-login {
  border: 1.5px solid rgba(234, 88, 12, 0.35);
  color: #EA580C;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
}
.landing-navbar .btn-login:hover {
  background: #EA580C;
  color: #fff;
  border-color: #EA580C;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
}

.landing-hero {
  padding: 90px 0 80px;
  text-align: center;
  background: linear-gradient(160deg, #fef3ea 0%, #fde8d4 40%, #fdf6f0 100%);
  position: relative;
  overflow: hidden;
}
.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23EA580C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.landing-hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFF7ED;
  color: #EA580C;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  border: 1px solid rgba(234, 88, 12, 0.12);
}
.landing-hero .hero-institution {
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748B;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.landing-hero .hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #0F172A;
  line-height: 1.1;
  margin-bottom: 10px;
}
.landing-hero .hero-title span.highlight {
  color: #EA580C;
}
.landing-hero .hero-subtitle {
  font-size: 1.35rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 8px;
}
.landing-hero .hero-schedule {
  font-size: 1rem;
  color: #64748B;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.landing-hero .hero-schedule .schedule-dot {
  width: 6px;
  height: 6px;
  background: #EA580C;
  border-radius: 50%;
  display: inline-block;
}
.landing-hero .hero-batch {
  display: inline-block;
  background: linear-gradient(135deg, #EA580C 0%, #c3490a 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 6px;
  margin: 20px 0 32px;
  letter-spacing: 0.02em;
}
.landing-hero .btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EA580C;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.3);
}
.landing-hero .btn-hero-primary:hover {
  background: #C2410C;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.4);
}
.landing-hero .btn-hero-primary svg {
  width: 18px;
  height: 18px;
}
.landing-hero .btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0F172A;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid #cbd5e1;
  background: #fff;
  transition: all 0.25s ease;
  margin-left: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.landing-hero .btn-hero-secondary:hover {
  border-color: #EA580C;
  color: #EA580C;
  background: #FFF7ED;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.15);
  transform: translateY(-1px);
}

.qualification-section {
  padding: 72px 0;
  background: #fff;
}
.qualification-section .section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #EA580C;
  margin-bottom: 10px;
}
.qualification-section .section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 40px;
}
.qualification-section .qual-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 26px;
  background: #F8FAFC;
  border-radius: 10px;
  border: 1px solid #F1F5F9;
  height: 100%;
  transition: all 0.25s ease;
}
.qualification-section .qual-card:hover {
  border-color: rgba(234, 88, 12, 0.2);
  background: #FFF7ED;
}
.qualification-section .qual-card:hover .qual-icon {
  background: rgba(234, 88, 12, 0.12);
  color: #d24f0b;
}
.qualification-section .qual-card .qual-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(234, 88, 12, 0.08);
  color: #EA580C;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}
.qualification-section .qual-card .qual-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 4px;
}
.qualification-section .qual-card .qual-text p {
  font-size: 0.82rem;
  color: #64748B;
  margin: 0;
  line-height: 1.5;
}

.syllabus-section {
  padding: 96px 0;
  background: #F8FAFC;
  position: relative;
}
.syllabus-section .syllabus-timeline {
  position: relative;
}
.syllabus-section .syllabus-timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #EA580C 0%, rgba(234, 88, 12, 0.15) 100%);
  z-index: 0;
}
@media (max-width: 768px) {
  .syllabus-section .syllabus-timeline::before {
    left: 20px;
  }
}
.syllabus-section .year-block {
  position: relative;
  margin-bottom: 80px;
  padding-left: 80px;
}
.syllabus-section .year-block:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .syllabus-section .year-block {
    padding-left: 52px;
  }
}
.syllabus-section .year-node {
  position: absolute;
  left: 0;
  top: 4px;
  width: 58px;
  height: 58px;
  background: #EA580C;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(234, 88, 12, 0.12), 0 4px 16px rgba(234, 88, 12, 0.35);
  z-index: 1;
  flex-shrink: 0;
}
.syllabus-section .year-node .node-label {
  font-size: 0.52rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1;
}
.syllabus-section .year-node .node-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .syllabus-section .year-node {
    width: 44px;
    height: 44px;
  }
  .syllabus-section .year-node .node-num {
    font-size: 1rem;
  }
  .syllabus-section .year-node .node-label {
    font-size: 0.45rem;
  }
}
.syllabus-section .year-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-top: 10px;
}
.syllabus-section .year-header .year-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
}
.syllabus-section .year-header .year-subject-count {
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748B;
  background: #fff;
  border: 1px solid #F1F5F9;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.syllabus-section .year-header::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #F1F5F9 0%, transparent 100%);
}
.syllabus-section .semester-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .syllabus-section .semester-grid {
    grid-template-columns: 1fr;
  }
}
.syllabus-section .semester-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #F1F5F9;
  overflow: hidden;
  height: 100%;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.syllabus-section .semester-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: rgba(234, 88, 12, 0.18);
}
.syllabus-section .semester-card:hover .semester-card-header {
  background: linear-gradient(135deg, #EA580C 0%, #c3490a 100%);
}
.syllabus-section .semester-card:hover .semester-num {
  color: rgba(255, 255, 255, 0.7);
}
.syllabus-section .semester-card:hover .semester-title {
  color: #fff;
}
.syllabus-section .semester-card:hover .duration-pill {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}
.syllabus-section .semester-card-header {
  padding: 18px 22px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.25s ease;
}
.syllabus-section .semester-card-header .semester-num {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
}
.syllabus-section .semester-card-header .semester-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-top: 2px;
}
.syllabus-section .semester-card-header .duration-pill {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.syllabus-section .semester-card-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.syllabus-section .subject-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}
.syllabus-section .subject-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid #F1F5F9;
  font-size: 0.84rem;
  color: #475569;
  line-height: 1.45;
}
.syllabus-section .subject-list li:first-child {
  padding-top: 0;
}
.syllabus-section .subject-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.syllabus-section .subject-list li::before {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  background: #EA580C;
  border-radius: 50%;
  margin-top: 5px;
  opacity: 0.7;
}
.syllabus-section .subject-list li strong {
  color: #0F172A;
  font-weight: 600;
}
.syllabus-section .subject-list li .or-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: #EA580C;
  background: #FFF7ED;
  border: 1px solid rgba(234, 88, 12, 0.2);
  border-radius: 4px;
  padding: 2px 6px;
  margin: 0 4px;
  flex-shrink: 0;
  letter-spacing: 0.05em;
  vertical-align: middle;
}
.syllabus-section .btn-materials {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #EA580C;
  text-decoration: none;
  padding: 8px 16px;
  border: 1.5px solid rgba(234, 88, 12, 0.25);
  border-radius: 8px;
  background: #FFF7ED;
  transition: all 0.15s ease;
  align-self: flex-start;
}
.syllabus-section .btn-materials:hover {
  background: #EA580C;
  color: #fff;
  border-color: #EA580C;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
}

.benefits-section {
  padding: 80px 0;
  background: #fff;
}
.benefits-section .benefit-card {
  padding: 36px 28px;
  border-radius: 10px;
  border: 1px solid #F1F5F9;
  text-align: center;
  height: 100%;
  transition: all 0.25s ease;
  background: #F8FAFC;
  position: relative;
  overflow: hidden;
}
.benefits-section .benefit-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0 0 10px 10px;
  opacity: 0;
  transition: all 0.15s ease;
}
.benefits-section .benefit-card:nth-child(1)::after {
  background: #EA580C;
}
.benefits-section .benefit-card:nth-child(2)::after {
  background: #16A34A;
}
.benefits-section .benefit-card:nth-child(3)::after {
  background: #2563EB;
}
.benefits-section .benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.benefits-section .benefit-card:hover::after {
  opacity: 1;
}
.benefits-section .benefit-card .benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.benefits-section .benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 12px;
}
.benefits-section .benefit-card p {
  font-size: 0.875rem;
  color: #64748B;
  line-height: 1.65;
  margin: 0;
}

.cta-section {
  padding: 72px 0;
  background: linear-gradient(135deg, #0F172A 0%, #1e293b 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.cta-section p {
  color: #94a3b8;
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EA580C;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}
.cta-section .btn-cta:hover {
  background: #C2410C;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(234, 88, 12, 0.5);
}

.landing-footer {
  background: #0F172A;
  color: #94a3b8;
  padding: 48px 0 32px;
}
.landing-footer .footer-brand {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.landing-footer .footer-tagline {
  font-size: 0.8rem;
  color: #64748b;
}
.landing-footer .footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 14px;
}
.landing-footer .footer-link {
  display: block;
  font-size: 0.85rem;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 8px;
  transition: all 0.15s ease;
}
.landing-footer .footer-link:hover {
  color: #EA580C;
}
.landing-footer .footer-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 10px;
}
.landing-footer .footer-contact svg {
  color: #EA580C;
  flex-shrink: 0;
}
.landing-footer .footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 32px 0 24px;
}
.landing-footer .footer-copy {
  font-size: 0.8rem;
  color: #475569;
}

@media (max-width: 768px) {
  .landing-hero {
    padding: 60px 0 50px;
  }
  .landing-hero .btn-hero-secondary {
    margin-left: 0;
    margin-top: 12px;
  }
  .landing-hero .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
  .syllabus-section .year-header {
    flex-wrap: wrap;
  }
  .qualification-section .section-title {
    font-size: 1.5rem;
  }
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.875rem;
  background-color: #F8FAFC;
  color: #64748B;
  margin: 0;
  overflow-x: hidden;
}

.text-primary {
  color: #EA580C !important;
}

.bg-primary {
  background-color: #EA580C !important;
}

.brand-logo-wrapper {
  width: 40px;
  height: 40px;
  background-color: #FFF7ED;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-logo-wrapper img {
  width: 22px;
  height: 22px;
}

.btn-primary {
  background-color: #EA580C;
  border-color: #EA580C;
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.25s ease;
}
.btn-primary:hover {
  background-color: #C2410C;
  border-color: #C2410C;
  color: #fff;
}

.btn-outline-primary {
  color: #EA580C;
  border-color: #EA580C;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.25s ease;
}
.btn-outline-primary:hover {
  background-color: #FFF7ED;
  color: #EA580C;
  border-color: #EA580C;
}

.admin-layout {
  display: flex;
  min-height: 100vh;
}

.main-content {
  flex: 1;
  margin-left: 260px;
  background: #F8FAFC;
  min-height: 100vh;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.sidebar.collapsed ~ .main-content .main-content, .main-content.sidebar-collapsed {
  margin-left: 72px;
}

body.sidebar-is-collapsed .main-content {
  margin-left: 72px;
}

.content-wrapper {
  flex: 1;
  padding: 28px;
}

.page-header {
  margin-bottom: 24px;
}
.page-header h4,
.page-header .page-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px;
}
.page-header p,
.page-header .page-subtext {
  color: #475569;
  margin: 0;
  font-size: 0.875rem;
}

.card {
  border: 1px solid #f1f5f9;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  background: #fff;
}

.page-container {
  padding: 28px;
}

.page-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.page-header-flex .title-area h2 {
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  margin-bottom: 6px;
  list-style: none;
  background: transparent;
}
.breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: #94a3b8;
}
.breadcrumb .breadcrumb-item a {
  color: #94a3b8;
  text-decoration: none;
  transition: color all 0.15s ease;
}
.breadcrumb .breadcrumb-item a:hover {
  color: #EA580C;
}
.breadcrumb .breadcrumb-item.active {
  color: #EA580C;
  font-weight: 600;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 0;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  display: inline-flex;
  align-items: center;
  padding: 0 7px;
  color: #cbd5e1;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}

@media (max-width: 991.98px) {
  .main-content {
    margin-left: 0 !important;
  }
  .content-wrapper {
    padding: 20px 16px;
  }
}
.action-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.action-links a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}
.action-links a i {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}
.action-links a.view {
  color: #2563EB;
}
.action-links a.edit {
  color: #CA8A04;
}
.action-links a.delete {
  color: #DC2626;
}

.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter {
  margin-bottom: 16px;
}
.dataTables_wrapper .dataTables_length label, .dataTables_wrapper .dataTables_filter label {
  font-size: 0.88rem;
  color: #64748B;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dataTables_wrapper .dataTables_length select, .dataTables_wrapper .dataTables_filter select {
  padding: 7px 14px;
  font-size: 0.875rem;
  border: 1px solid #c2bcbc;
  border-radius: 6px;
  background-color: #fff;
  color: #0F172A;
  transition: all 0.3s ease;
  font-family: "Plus Jakarta Sans", sans-serif;
  border-color: grey;
  display: inline-block;
  width: auto !important;
  height: 38px;
  padding: 6px 36px 6px 12px !important;
  font-size: 0.88rem;
  border-radius: 6px;
  cursor: pointer;
}
.dataTables_wrapper .dataTables_length select::placeholder, .dataTables_wrapper .dataTables_filter select::placeholder {
  color: #adb5bd;
}
.dataTables_wrapper .dataTables_length select:hover, .dataTables_wrapper .dataTables_filter select:hover {
  border-color: rgba(234, 88, 12, 0.4);
}
.dataTables_wrapper .dataTables_length select:focus, .dataTables_wrapper .dataTables_filter select:focus {
  outline: none;
  border-color: #EA580C;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
  background-color: #fff;
}
.dataTables_wrapper .dataTables_length select[readonly], .dataTables_wrapper .dataTables_filter select[readonly] {
  background-color: #F8FAFC;
  cursor: not-allowed;
  color: #64748B;
  border-style: dashed;
}
.dataTables_wrapper .dataTables_length select:focus, .dataTables_wrapper .dataTables_filter select:focus {
  border-color: #EA580C;
}
.dataTables_wrapper .dataTables_length input, .dataTables_wrapper .dataTables_filter input {
  padding: 7px 14px;
  font-size: 0.875rem;
  border: 1px solid #c2bcbc;
  border-radius: 6px;
  background-color: #fff;
  color: #0F172A;
  transition: all 0.3s ease;
  font-family: "Plus Jakarta Sans", sans-serif;
  border-color: grey;
  display: inline-block;
  width: auto;
  height: 38px;
  padding: 6px 12px;
  font-size: 0.88rem;
  border-radius: 6px;
}
.dataTables_wrapper .dataTables_length input::placeholder, .dataTables_wrapper .dataTables_filter input::placeholder {
  color: #adb5bd;
}
.dataTables_wrapper .dataTables_length input:hover, .dataTables_wrapper .dataTables_filter input:hover {
  border-color: rgba(234, 88, 12, 0.4);
}
.dataTables_wrapper .dataTables_length input:focus, .dataTables_wrapper .dataTables_filter input:focus {
  outline: none;
  border-color: #EA580C;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
  background-color: #fff;
}
.dataTables_wrapper .dataTables_length input[readonly], .dataTables_wrapper .dataTables_filter input[readonly] {
  background-color: #F8FAFC;
  cursor: not-allowed;
  color: #64748B;
  border-style: dashed;
}
.dataTables_wrapper .dataTables_length input:focus, .dataTables_wrapper .dataTables_filter input:focus {
  border-color: #EA580C;
}
.dataTables_wrapper .dataTables_info {
  font-size: 0.85rem;
  color: #64748B;
  font-weight: 500;
  padding-top: 12px;
}
.dataTables_wrapper .dataTables_paginate {
  padding-top: 20px;
}
.dataTables_wrapper .dataTables_paginate .pagination {
  margin: 0;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
}
.dataTables_wrapper .dataTables_paginate .page-item .page-link {
  border: 1px solid rgba(0, 0, 0, 0.04);
  background-color: #fff;
  color: #0F172A;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dataTables_wrapper .dataTables_paginate .page-item .page-link i {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}
.dataTables_wrapper .dataTables_paginate .page-item .page-link:hover {
  background-color: rgba(234, 88, 12, 0.08);
  border-color: rgba(234, 88, 12, 0.1);
  color: #EA580C;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}
.dataTables_wrapper .dataTables_paginate .page-item.active .page-link {
  background-color: #EA580C !important;
  border-color: #EA580C !important;
  color: #fff !important;
  box-shadow: 0 6px 14px rgba(234, 88, 12, 0.28) !important;
  transform: translateY(-1px);
}
.dataTables_wrapper .dataTables_paginate .page-item.disabled .page-link {
  background-color: transparent !important;
  border-color: transparent !important;
  color: #cbd5e1;
  box-shadow: none !important;
  transform: none !important;
  cursor: not-allowed;
}
.dataTables_wrapper .dataTables_paginate .page-item.previous .page-link, .dataTables_wrapper .dataTables_paginate .page-item.next .page-link {
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
  color: #64748B;
  font-size: 1.1rem;
}
.dataTables_wrapper .dataTables_paginate .page-item.previous .page-link:hover:not(.disabled), .dataTables_wrapper .dataTables_paginate .page-item.next .page-link:hover:not(.disabled) {
  background-color: rgba(234, 88, 12, 0.08);
  color: #EA580C;
}

.finance-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.finance-stats .stat-card {
  background: #fff;
  border: 1px solid #F1F5F9;
  border-radius: 10px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}
.finance-stats .stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #EA580C;
}
.finance-stats .stat-card .stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.finance-stats .stat-card .stat-icon i {
  width: 26px;
  height: 26px;
  stroke-width: 2.2px;
}
.finance-stats .stat-card .stat-info .stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748B;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.finance-stats .stat-card .stat-info .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
  line-height: 1.2;
}
.finance-stats .stat-card.today .stat-icon {
  background: rgba(234, 88, 12, 0.1);
  color: #EA580C;
}
.finance-stats .stat-card.month .stat-icon {
  background: rgba(37, 99, 235, 0.1);
  color: #2563EB;
}
.finance-stats .stat-card.year .stat-icon {
  background: rgba(22, 163, 74, 0.1);
  color: #16A34A;
}

.stats-action-area {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.expense-modal .modal-content {
  border: none;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 10px 20px -5px rgba(0, 0, 0, 0.1);
  padding: 0;
  overflow: hidden;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}
.expense-modal .modal-content > form {
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  width: 100%;
  overflow: hidden;
}
.expense-modal .modal-header {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 20px 28px;
  border-radius: 24px 24px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.expense-modal .modal-header .modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}
.expense-modal .modal-header .btn-close {
  background: transparent !important;
  border: none;
  color: #DC2626;
  opacity: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  transition: none !important;
  box-shadow: none;
}
.expense-modal .modal-header .btn-close i {
  display: block;
  width: 22px;
  height: 22px;
  stroke-width: 3;
}
.expense-modal .modal-header .btn-close:hover {
  background: transparent !important;
  color: #B91C1C;
}
.expense-modal .modal-header .btn-close:focus {
  box-shadow: none;
}
.expense-modal .modal-body {
  padding: 24px 28px;
  overflow-y: auto;
  flex: 1;
}
.expense-modal .modal-body::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.expense-modal .modal-body::-webkit-scrollbar-track {
  background: transparent;
}
.expense-modal .modal-body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
.expense-modal .modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.25);
}
.expense-modal .form-row {
  display: block;
  margin-bottom: 16px;
}
.expense-modal .form-row .form-label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0F172A;
  width: 100%;
  margin-bottom: 8px;
}
.expense-modal .form-row .form-label.required::after {
  content: " *";
  color: #DC2626;
}
.expense-modal .form-row .form-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.expense-modal select.box-input {
  appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748B' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") no-repeat right 16px center;
  padding-right: 45px;
}
.expense-modal .box-input {
  padding: 7px 14px;
  font-size: 0.875rem;
  border: 1px solid #c2bcbc;
  border-radius: 6px;
  background-color: #fff;
  color: #0F172A;
  transition: all 0.3s ease;
  font-family: "Plus Jakarta Sans", sans-serif;
  width: 100%;
}
.expense-modal .box-input::placeholder {
  color: #adb5bd;
}
.expense-modal .box-input:hover {
  border-color: rgba(234, 88, 12, 0.4);
}
.expense-modal .box-input:focus {
  outline: none;
  border-color: #EA580C;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
  background-color: #fff;
}
.expense-modal .box-input[readonly] {
  background-color: #F8FAFC;
  cursor: not-allowed;
  color: #64748B;
  border-style: dashed;
}
.expense-modal .box-select {
  padding: 7px 14px;
  font-size: 0.875rem;
  border: 1px solid #c2bcbc;
  border-radius: 6px;
  background-color: #fff;
  color: #0F172A;
  transition: all 0.3s ease;
  font-family: "Plus Jakarta Sans", sans-serif;
  appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748B' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") no-repeat right 16px center;
  padding-right: 45px;
  width: 100%;
}
.expense-modal .box-select::placeholder {
  color: #adb5bd;
}
.expense-modal .box-select:hover {
  border-color: rgba(234, 88, 12, 0.4);
}
.expense-modal .box-select:focus {
  outline: none;
  border-color: #EA580C;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
  background-color: #fff;
}
.expense-modal .box-select[readonly] {
  background-color: #F8FAFC;
  cursor: not-allowed;
  color: #64748B;
  border-style: dashed;
}
.expense-modal .ts-wrapper.box-select {
  padding: 0 !important;
  border: none !important;
  background: none !important;
}
.expense-modal .ts-wrapper .ts-control {
  min-height: 44px;
}
.expense-modal .ts-wrapper .ts-control .item {
  font-size: 0.95rem;
  color: #333;
}
.expense-modal .ts-wrapper .ts-dropdown {
  margin-top: 5px !important;
}
.expense-modal .ts-wrapper .ts-dropdown .active {
  background-color: #FFF7ED !important;
  color: #EA580C !important;
}
.expense-modal .ts-wrapper .ts-dropdown .option {
  padding: 10px 12px;
  font-size: 0.95rem;
}

.line-items-container {
  margin-top: 20px;
  max-height: 100px;
  overflow-y: auto;
  padding-right: 10px;
  margin-right: -10px;
}
.line-items-container::-webkit-scrollbar {
  width: 5px;
}
.line-items-container::-webkit-scrollbar-track {
  background: #F8FAFC;
  border-radius: 10px;
}
.line-items-container::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}
.line-items-container::-webkit-scrollbar-thumb:hover {
  background: #64748B;
}

.expense-line-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  width: 100%;
}
.expense-line-item .type-input {
  flex: 2;
}
.expense-line-item .amount-input {
  flex: 1;
  max-width: 150px;
}
.expense-line-item .btn-remove-line {
  color: #999;
  text-decoration: none;
  font-weight: bold;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  border-radius: 4px;
}
.expense-line-item .btn-remove-line i {
  width: 18px;
  height: 18px;
}
.expense-line-item .btn-remove-line:hover {
  color: #DC2626;
  background-color: rgba(220, 38, 38, 0.1);
  transform: scale(1.1);
}

.btn-add-line {
  height: 38px;
  padding: 0 15px !important;
}

.expense-form-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 20px 0 0;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.expense-form-footer .footer-left .date-display {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
  font-size: 0.9rem;
}
.expense-form-footer .footer-left .words-display {
  font-style: italic;
  color: #64748b;
  font-size: 0.85rem;
}
.expense-form-footer .footer-right {
  text-align: right;
}
.expense-form-footer .footer-right .total-label {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
}
.expense-form-footer .footer-right .total-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #EA580C;
}

.modal-actions {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.dt-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid #F1F5F9;
  padding: 20px;
  margin-top: 16px;
}

#expenseTable,
#categoryTable {
  border-color: #F1F5F9;
}
#expenseTable thead tr th,
#categoryTable thead tr th {
  background-color: #EA580C !important;
  color: #ffffff !important;
  padding: 14px 20px !important;
  border: none !important;
  font-weight: 700;
  font-size: 0.85rem;
}
#expenseTable tbody tr,
#categoryTable tbody tr {
  border-bottom: 1px solid #F1F5F9;
  transition: all 0.15s ease;
}
#expenseTable tbody tr:hover,
#categoryTable tbody tr:hover {
  background-color: #F8FAFC !important;
}
#expenseTable tbody td,
#categoryTable tbody td {
  padding: 14px 20px;
  color: #64748B;
  vertical-align: middle;
  border-bottom: 1px solid #F1F5F9;
}

.btn-premium, .btn-add-line {
  background-color: #EA580C !important;
  color: #fdfdfd !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 8px 20px !important;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 6px -1px rgba(234, 88, 12, 0.2), 0 2px 4px -1px rgba(234, 88, 12, 0.1);
  cursor: pointer;
  text-decoration: none;
}
.btn-premium i, .btn-add-line i {
  width: 16px;
  height: 16px;
}
.btn-premium:hover, .btn-add-line:hover {
  background-color: #C2410C !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(234, 88, 12, 0.3);
  color: #fff !important;
}
.btn-premium:active, .btn-add-line:active {
  transform: translateY(0);
}
.btn-premium.btn-sm, .btn-add-line {
  padding: 6px 16px !important;
  font-size: 0.75rem;
  gap: 6px;
}
.btn-premium.btn-sm i, .btn-add-line i {
  width: 12px;
  height: 12px;
}

.btn-premium-danger {
  background-color: #fff !important;
  color: #DC2626 !important;
  border: 1.5px solid #DC2626 !important;
  border-radius: 6px !important;
  padding: 8px 20px !important;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}
.btn-premium-danger i {
  width: 16px;
  height: 16px;
}
.btn-premium-danger:hover {
  background-color: #DC2626 !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(220, 38, 38, 0.2);
}
.btn-premium-danger:active {
  transform: translateY(0);
}

.btn-premium-success {
  background-color: #fff !important;
  color: #16A34A !important;
  border: 1.5px solid #16A34A !important;
  border-radius: 6px !important;
  padding: 8px 24px !important;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}
.btn-premium-success:hover {
  background-color: #16A34A !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(22, 163, 74, 0.2);
}
.btn-premium-success:active {
  transform: translateY(0);
}

.btn-premium-secondary {
  background-color: #fff !important;
  color: #64748B !important;
  border: 1.5px solid #64748B !important;
  border-radius: 6px !important;
  padding: 8px 24px !important;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  gap: 8px;
}
.btn-premium-secondary:hover {
  background-color: #64748B !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(100, 116, 139, 0.2);
}
.btn-premium-secondary:active {
  transform: translateY(0);
}
.btn-premium-secondary.btn-sm, .btn-premium-secondary.btn-add-line {
  padding: 4px 12px !important;
  font-size: 0.75rem;
  gap: 5px;
}
.btn-premium-secondary.btn-sm i, .btn-premium-secondary.btn-add-line i {
  width: 14px;
  height: 14px;
}

.btn-premium-outline {
  background-color: transparent !important;
  color: #EA580C !important;
  border: 1.5px solid #EA580C !important;
  border-radius: 6px !important;
  padding: 8px 20px !important;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  gap: 8px;
}
.btn-premium-outline:hover {
  background-color: #EA580C !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(234, 88, 12, 0.3);
}
.btn-premium-outline:active {
  transform: translateY(0);
}
.btn-premium-outline.btn-sm, .btn-premium-outline.btn-add-line {
  padding: 6px 16px !important;
  font-size: 0.75rem;
  gap: 6px;
}
.btn-premium-outline.btn-sm i, .btn-premium-outline.btn-add-line i {
  width: 12px;
  height: 12px;
}

.card-body .box-input {
  padding: 7px 14px;
  font-size: 0.875rem;
  border: 1px solid #c2bcbc;
  border-radius: 6px;
  background-color: #fff;
  color: #0F172A;
  transition: all 0.3s ease;
  font-family: "Plus Jakarta Sans", sans-serif;
  width: 100%;
}
.card-body .box-input::placeholder {
  color: #adb5bd;
}
.card-body .box-input:hover {
  border-color: rgba(234, 88, 12, 0.4);
}
.card-body .box-input:focus {
  outline: none;
  border-color: #EA580C;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
  background-color: #fff;
}
.card-body .box-input[readonly] {
  background-color: #F8FAFC;
  cursor: not-allowed;
  color: #64748B;
  border-style: dashed;
}
.card-body .form-label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0F172A;
}

@keyframes menuFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.kanban-board {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 12px;
  align-items: flex-start;
  height: calc(100vh - 210px);
  min-height: 0;
}
.kanban-board::-webkit-scrollbar {
  height: 4px;
}
.kanban-board::-webkit-scrollbar-track {
  background: rgba(234, 88, 12, 0.08);
  border-radius: 10px;
}
.kanban-board::-webkit-scrollbar-thumb {
  background: rgba(234, 88, 12, 0.45);
  border-radius: 10px;
}
.kanban-board::-webkit-scrollbar-thumb:hover {
  background: rgba(234, 88, 12, 0.7);
}

.kanban-column {
  flex: 0 0 270px;
  min-width: 290px;
  background-color: #f1f5f9;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 226px);
  min-height: 0;
  border: 1px solid #F1F5F9;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  user-select: none;
}
.kanban-column .column-header {
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f1f5f9;
  border-radius: 10px 10px 0 0;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.kanban-column .column-header h3 {
  font-size: 0.82rem;
  font-weight: 800;
  margin: 0;
  color: #0F172A;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.kanban-column .column-header .count {
  background: #EA580C;
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(234, 88, 12, 0.2);
}
.kanban-column .column-body {
  padding: 8px 8px 12px;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-height: 0;
  width: 100%;
}
.kanban-column .column-body::-webkit-scrollbar {
  width: 3px;
}
.kanban-column .column-body::-webkit-scrollbar-track {
  background: rgba(234, 88, 12, 0.06);
  border-radius: 10px;
}
.kanban-column .column-body::-webkit-scrollbar-thumb {
  background: rgba(234, 88, 12, 0.4);
  border-radius: 10px;
}
.kanban-column .column-body::-webkit-scrollbar-thumb:hover {
  background: rgba(234, 88, 12, 0.65);
}

.kanban-card {
  flex-shrink: 0;
  border-radius: 4px;
  border: 1px solid #F1F5F9;
  padding: 0;
  width: 100%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: all 0.2s ease;
  cursor: grab;
  user-select: none;
  overflow: hidden;
  background: #f8f8f8;
}
.kanban-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--card-color, #e2e8f0);
  border-radius: 6px 0 0 6px;
  flex-shrink: 0;
}
.kanban-card .card-menu {
  position: absolute;
  top: 0px;
  right: -6px;
  z-index: 10;
  opacity: 1;
  pointer-events: auto;
}
.kanban-card .card-menu .menu-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color 0.15s ease, background 0.15s ease;
}
.kanban-card .card-menu .dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  padding: 6px 0;
  min-width: 120px;
  display: none;
  flex-direction: column;
  z-index: 1000;
  transform-origin: top right;
  animation: menuFadeIn 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}
.kanban-card .card-menu .dropdown-menu.show {
  display: flex;
}
.kanban-card .card-menu .dropdown-menu .dropdown-item {
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.kanban-card .card-menu .dropdown-menu .dropdown-item:hover {
  background: #f1f5f9;
  color: #0f172a;
}
.kanban-card .card-menu .dropdown-menu .dropdown-item.text-danger {
  color: #ef4444;
}
.kanban-card .card-menu .dropdown-menu .dropdown-item.text-danger:hover {
  background: #fef2f2;
  color: #dc2626;
}
.kanban-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.13);
  border-color: rgba(234, 88, 12, 0.35);
  cursor: grab;
}
.kanban-card:active {
  cursor: grabbing;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.kanban-card .card-header-top {
  display: flex;
  justify-content: space-between;
  padding: 8px 10px 8px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.kanban-card .card-header-top .header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.kanban-card .card-header-top .header-left .large-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFF7ED;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #EA580C;
  flex-shrink: 0;
}
.kanban-card .card-header-top .header-left .user-info .user-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 1px;
}
.kanban-card .card-header-top .header-left .user-info .user-role {
  font-size: 0.7rem;
  color: rgba(15, 23, 42, 0.55);
  font-weight: 500;
}
.kanban-card .card-header-top .header-right {
  position: absolute;
  left: 180px;
  top: 4px;
}
.kanban-card .card-header-top .header-right .task-date {
  font-size: 0.68rem;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 2px;
  text-align: right;
}
.kanban-card .card-header-top .header-right .task-time {
  font-size: 0.7rem;
  color: rgba(15, 23, 42, 0.5);
  font-weight: 500;
  text-align: right;
}
.kanban-card .card-body-mid {
  padding: 7px 10px 7px 14px;
}
.kanban-card .card-body-mid .task-display-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 4px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.kanban-card .card-body-mid .task-remarks {
  font-size: 0.65rem;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.65);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.kanban-card .card-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px 6px 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.kanban-card .card-footer-bottom .stacked-avatars {
  display: flex;
  align-items: center;
}
.kanban-card .card-footer-bottom .stacked-avatars .avatar-sm {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FFF7ED;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  margin-left: -8px;
  color: #EA580C;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.kanban-card .card-footer-bottom .stacked-avatars .avatar-sm:first-child {
  margin-left: 0;
}
.kanban-card .card-footer-bottom .stacked-avatars .avatar-sm.tester {
  background: #eff6ff;
  color: #2563EB;
}
.kanban-card .card-footer-bottom .priority-box {
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 0;
  text-transform: capitalize;
  border: none;
}
.kanban-card .card-footer-bottom .priority-box.low {
  background: #27AE60;
  color: #fff;
}
.kanban-card .card-footer-bottom .priority-box.medium {
  background: #F39C12;
  color: #fff;
}
.kanban-card .card-footer-bottom .priority-box.high {
  background: #E74C3C;
  color: #fff;
}

.sortable-ghost {
  opacity: 0.45;
  background: #e2e8f0 !important;
  border: 2px dashed rgba(234, 88, 12, 0.5) !important;
}

.kanban-form-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #F1F5F9;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}
.kanban-form-card .box-input {
  width: 80%;
  height: 42px;
  padding: 8px 16px;
  font-size: 0.95rem;
  border: 1px solid gray;
  border-radius: 6px;
  background-color: #fff;
  color: #0F172A;
  transition: all 0.3s ease;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.kanban-form-card .box-input::placeholder {
  color: #94a3b8;
}
.kanban-form-card .box-input:hover {
  border-color: rgba(234, 88, 12, 0.4);
}
.kanban-form-card .box-input:focus {
  outline: none;
  border-color: #EA580C;
  box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.1);
  background-color: #fff;
}
.kanban-form-card select.box-input {
  appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748B' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") no-repeat right 16px center;
  padding-right: 45px;
}
.kanban-form-card .form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0F172A;
}

.youtube-modal .modal-dialog {
  max-width: 680px;
}
.youtube-modal .modal-content {
  border: none;
  border-radius: 18px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 10px 20px -5px rgba(0, 0, 0, 0.1);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.youtube-modal .modal-content > form {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.youtube-modal .modal-header {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 14px 24px;
  border-radius: 24px 24px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.youtube-modal .modal-header .modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}
.youtube-modal .modal-header .btn-close {
  background: transparent !important;
  border: none;
  color: #DC2626;
  opacity: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  transition: none !important;
  box-shadow: none;
}
.youtube-modal .modal-header .btn-close i {
  display: block;
  width: 22px;
  height: 22px;
  stroke-width: 3;
}
.youtube-modal .modal-header .btn-close:hover {
  background: transparent !important;
  color: #B91C1C;
}
.youtube-modal .modal-header .btn-close:focus {
  box-shadow: none;
}
.youtube-modal .modal-body {
  padding: 14px 24px 10px;
  overflow-y: visible;
  flex: 1;
}
.youtube-modal .modal-body::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.youtube-modal .modal-body::-webkit-scrollbar-track {
  background: transparent;
}
.youtube-modal .modal-body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
.youtube-modal .modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.25);
}
.youtube-modal .task-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
  width: 100%;
}
.youtube-modal .task-form-grid .task-col-full {
  grid-column: 1/-1;
}
.youtube-modal .box-input-color {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px;
  padding: 2px !important;
  border-radius: 8px;
  border: 2px solid #F1F5F9;
  cursor: pointer;
  flex-shrink: 0;
}
.youtube-modal .form-row {
  display: block;
  margin-bottom: 10px;
  width: 100%;
}
.youtube-modal .form-row .form-label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0F172A;
  display: block;
  width: 100%;
  margin-bottom: 8px;
}
.youtube-modal .form-row .form-label.required::after {
  content: " *";
  color: #DC2626;
}
.youtube-modal .form-row .form-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.youtube-modal .box-input {
  padding: 7px 14px;
  font-size: 0.875rem;
  border: 1px solid #c2bcbc;
  border-radius: 6px;
  background-color: #fff;
  color: #0F172A;
  transition: all 0.3s ease;
  font-family: "Plus Jakarta Sans", sans-serif;
  width: 100%;
}
.youtube-modal .box-input::placeholder {
  color: #adb5bd;
}
.youtube-modal .box-input:hover {
  border-color: rgba(234, 88, 12, 0.4);
}
.youtube-modal .box-input:focus {
  outline: none;
  border-color: #EA580C;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
  background-color: #fff;
}
.youtube-modal .box-input[readonly] {
  background-color: #F8FAFC;
  cursor: not-allowed;
  color: #64748B;
  border-style: dashed;
}
.youtube-modal .box-select {
  padding: 7px 14px;
  font-size: 0.875rem;
  border: 1px solid #c2bcbc;
  border-radius: 6px;
  background-color: #fff;
  color: #0F172A;
  transition: all 0.3s ease;
  font-family: "Plus Jakarta Sans", sans-serif;
  appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748B' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") no-repeat right 16px center;
  padding-right: 45px;
  width: 100%;
}
.youtube-modal .box-select::placeholder {
  color: #adb5bd;
}
.youtube-modal .box-select:hover {
  border-color: rgba(234, 88, 12, 0.4);
}
.youtube-modal .box-select:focus {
  outline: none;
  border-color: #EA580C;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
  background-color: #fff;
}
.youtube-modal .box-select[readonly] {
  background-color: #F8FAFC;
  cursor: not-allowed;
  color: #64748B;
  border-style: dashed;
}
.youtube-modal .ts-wrapper.box-select {
  padding: 0 !important;
  border: none !important;
  background: none !important;
}
.youtube-modal .ts-wrapper .ts-control {
  min-height: 40px;
}
.youtube-modal .ts-wrapper .ts-control .item {
  font-size: 0.95rem;
  color: #333;
}
.youtube-modal .ts-wrapper .ts-dropdown {
  margin-top: 5px !important;
}
.youtube-modal .ts-wrapper .ts-dropdown .active {
  background-color: #FFF7ED !important;
  color: #EA580C !important;
}
.youtube-modal .ts-wrapper .ts-dropdown .option {
  padding: 10px 12px;
  font-size: 0.95rem;
}

body:has(.kanban-board) {
  overflow: hidden;
}
body:has(.kanban-board) .main-content {
  height: calc(100vh - 64px);
  overflow: hidden;
}
body:has(.kanban-board) .page-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}
body:has(.kanban-board) .kanban-board {
  flex: 1;
  margin-top: 5px;
  margin-bottom: 0;
  padding-bottom: 10px;
  height: auto;
  min-height: 0;
}

.status-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.status-badge.status-active {
  background-color: rgba(22, 163, 74, 0.1);
  color: #16A34A;
  border: 1px solid rgba(22, 163, 74, 0.2);
}
.status-badge.status-inactive {
  background-color: rgba(220, 38, 38, 0.1);
  color: #DC2626;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.badge {
  padding: 8px 12px;
  font-weight: 600;
  border-radius: 6px;
}

.dt-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid #F1F5F9;
  padding: 20px;
  margin-top: 16px;
}

#columnTable,
#playlistTable,
#completedTable {
  border-color: gray;
}
#columnTable thead tr th,
#playlistTable thead tr th,
#completedTable thead tr th {
  background-color: #EA580C !important;
  color: #ffffff !important;
  padding: 14px 20px !important;
  border: none !important;
  font-weight: 700;
  font-size: 0.85rem;
}
#columnTable tbody tr,
#playlistTable tbody tr,
#completedTable tbody tr {
  border-bottom: 1px solid #F1F5F9;
  transition: all 0.15s ease;
}
#columnTable tbody tr:hover,
#playlistTable tbody tr:hover,
#completedTable tbody tr:hover {
  background-color: #F8FAFC !important;
}
#columnTable tbody td,
#playlistTable tbody td,
#completedTable tbody td {
  padding: 14px 20px;
  color: #64748B;
  vertical-align: middle;
  border-bottom: 1px solid #F1F5F9;
}

.badge-completed {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background-color: rgba(22, 163, 74, 0.1);
  color: #16A34A;
  border: 1px solid rgba(22, 163, 74, 0.25);
}

.url-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #EA580C;
  text-decoration: none;
  transition: color 0.15s ease;
}
.url-link:hover {
  color: #b9460a;
  text-decoration: underline;
}

#kanbanToast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(234, 88, 12, 0.18);
  border-left: 4px solid #EA580C;
  border-radius: 10px;
  padding: 14px 16px 14px 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(234, 88, 12, 0.1);
  min-width: 280px;
  max-width: 360px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
#kanbanToast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#kanbanToast .kanban-toast-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(234, 88, 12, 0.1);
  color: #EA580C;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
#kanbanToast .kanban-toast-body {
  flex: 1;
  min-width: 0;
}
#kanbanToast .kanban-toast-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
#kanbanToast .kanban-toast-msg {
  font-size: 0.82rem;
  color: #64748B;
  line-height: 1.4;
}
#kanbanToast .kanban-toast-msg strong {
  color: #0F172A;
  font-weight: 600;
}
#kanbanToast .kanban-toast-close {
  flex-shrink: 0;
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color 0.15s ease, background 0.15s ease;
}
#kanbanToast .kanban-toast-close:hover {
  color: #0F172A;
  background: #f1f5f9;
}

.chat-page-container {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 120px);
  overflow: hidden;
}

.chat-task-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-radius: 10px;
  margin-bottom: 14px;
  flex-shrink: 0;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background-color: #ffffff;
  border: 1px solid #F1F5F9;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.chat-task-bar .chat-task-bar-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.chat-task-bar .chat-task-title {
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  color: #0F172A;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
  line-height: 1.8;
}
.chat-task-bar .chat-task-remarks {
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(15, 23, 42, 0.65);
  white-space: normal;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chat-task-bar .chat-task-bar-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}
.chat-task-bar .chat-task-date {
  font-size: 0.68rem;
  font-weight: 600;
  color: #0F172A;
  text-align: right;
}
.chat-task-bar .priority-box {
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 0;
  text-transform: capitalize;
  border: none;
  white-space: nowrap;
}
.chat-task-bar .priority-box.low {
  background: #27AE60;
  color: #fff;
}
.chat-task-bar .priority-box.medium {
  background: #F39C12;
  color: #fff;
}
.chat-task-bar .priority-box.high {
  background: #E74C3C;
  color: #fff;
}

.chat-page-layout {
  display: flex;
  gap: 0;
  flex: 1;
  min-height: 0;
  border: 1px solid #F1F5F9;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.chat-users-panel {
  width: 240px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #F1F5F9;
  background: #ffffff;
}
.chat-users-panel .chat-users-search {
  padding: 14px 12px 10px;
  border-bottom: 1px solid #F1F5F9;
  position: relative;
  flex-shrink: 0;
}
.chat-users-panel .chat-users-search .search-icon {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: #94a3b8;
}
.chat-users-panel .chat-users-search input {
  width: 100%;
  padding: 7px 10px 7px 32px;
  border: 1.5px solid #F1F5F9;
  border-radius: 8px;
  font-size: 0.8rem;
  background: #fff;
  color: #0F172A;
  box-sizing: border-box;
}
.chat-users-panel .chat-users-search input::placeholder {
  color: #94a3b8;
}
.chat-users-panel .chat-users-search input:focus {
  outline: none;
  border-color: #EA580C;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.08);
}
.chat-users-panel .chat-users-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}
.chat-users-panel .chat-users-list::-webkit-scrollbar {
  width: 4px;
}
.chat-users-panel .chat-users-list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.chat-users-panel .chat-user-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.chat-users-panel .chat-user-item:hover {
  background: rgba(234, 88, 12, 0.05);
}
.chat-users-panel .chat-user-item.active {
  background: rgba(234, 88, 12, 0.08);
  border-left: 3px solid #EA580C;
  padding-left: 11px;
}
.chat-users-panel .chat-user-item .chat-user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.chat-users-panel .chat-user-item .chat-user-avatar.av-teacher {
  background: #16A34A;
}
.chat-users-panel .chat-user-item .chat-user-avatar.av-tester {
  background: #2563EB;
}
.chat-users-panel .chat-user-item .chat-user-info {
  min-width: 0;
}
.chat-users-panel .chat-user-item .chat-user-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0F172A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chat-users-panel .chat-user-item .chat-user-role {
  font-size: 0.72rem;
  color: #64748B;
}

.chat-main-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  background: #f8fafc;
}

.chat-messages-area {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 0;
}
.chat-messages-area::-webkit-scrollbar {
  width: 5px;
}
.chat-messages-area::-webkit-scrollbar-track {
  background: transparent;
}
.chat-messages-area::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 10px;
}

.chat-date-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  color: #64748B;
  text-align: center;
}
.chat-date-divider::before, .chat-date-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #F1F5F9;
}

.chat-msg {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 70%;
  animation: chatFadeIn 0.2s ease-out;
}
.chat-msg.msg-teacher {
  align-self: flex-start;
}
.chat-msg.msg-teacher .chat-bubble {
  background: #fff;
  border: 1px solid #F1F5F9;
  border-radius: 4px 12px 12px 12px;
  color: #0F172A;
}
.chat-msg.msg-tester {
  align-self: flex-end;
  flex-direction: row-reverse;
}
.chat-msg.msg-tester .chat-msg-col {
  align-items: flex-end;
}
.chat-msg.msg-tester .chat-msg-name {
  justify-content: flex-end;
}
.chat-msg.msg-tester .chat-bubble-wrap {
  flex-direction: row-reverse;
}
.chat-msg.msg-tester .chat-bubble {
  background: rgba(234, 88, 12, 0.08);
  border: 1px solid rgba(234, 88, 12, 0.15);
  border-radius: 12px 4px 12px 12px;
  color: #0F172A;
}

.chat-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  color: #fff;
}
.chat-avatar.av-teacher {
  background: #16A34A;
}
.chat-avatar.av-tester {
  background: #2563EB;
}

.chat-msg-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.chat-msg-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748B;
  display: flex;
  align-items: center;
  gap: 5px;
}

.chat-role-label {
  font-size: 0.65rem;
  padding: 1px 6px;
  border-radius: 20px;
  font-weight: 700;
}
.chat-role-label.role-teacher {
  background: rgba(22, 163, 74, 0.12);
  color: #16A34A;
}
.chat-role-label.role-tester {
  background: rgba(37, 99, 235, 0.12);
  color: #2563EB;
}

.chat-bubble-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.chat-bubble {
  padding: 9px 13px;
  font-size: 0.845rem;
  line-height: 1.55;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  word-break: break-word;
}

.msg-actions {
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.chat-msg:hover .msg-actions {
  opacity: 1;
}

.msg-action-btn {
  width: 26px;
  height: 26px;
  border: 1px solid #F1F5F9;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #64748B;
  transition: all 0.15s ease;
  flex-shrink: 0;
}
.msg-action-btn i {
  width: 13px;
  height: 13px;
}
.msg-action-btn:hover {
  background: #f1f5f9;
  color: #0F172A;
  border-color: rgba(0, 0, 0, 0.15);
}
.msg-action-btn.danger {
  color: #DC2626;
  border-color: rgba(220, 38, 38, 0.2);
}
.msg-action-btn.danger:hover {
  background: rgba(220, 38, 38, 0.06);
  border-color: rgba(220, 38, 38, 0.35);
}

.chat-msg-time {
  font-size: 0.68rem;
  color: #64748B;
  opacity: 0.75;
}

.chat-loading,
.chat-empty,
.chat-error {
  text-align: center;
  color: #64748B;
  font-size: 0.85rem;
  padding: 40px 0;
  width: 100%;
  align-self: center;
}

.chat-send-area {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid #F1F5F9;
  background: #fff;
  flex-shrink: 0;
}
.chat-send-area .chat-textarea {
  flex: 1;
  padding: 9px 13px;
  font-size: 0.875rem;
  border: 1.5px solid #F1F5F9;
  border-radius: 10px;
  background: #f8fafc;
  color: #0F172A;
  resize: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.5;
  min-height: 42px;
  max-height: 120px;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}
.chat-send-area .chat-textarea::placeholder {
  color: #94a3b8;
}
.chat-send-area .chat-textarea:hover {
  border-color: rgba(234, 88, 12, 0.4);
}
.chat-send-area .chat-textarea:focus {
  outline: none;
  border-color: #EA580C;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.08);
}
.chat-send-area .chat-send-btn {
  padding: 9px 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.dt-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid #F1F5F9;
  padding: 20px;
  margin-top: 16px;
}

#moduleTable {
  border-color: #F1F5F9;
}
#moduleTable thead tr th {
  background-color: #EA580C !important;
  color: #ffffff !important;
  padding: 14px 20px !important;
  border: none !important;
  font-weight: 700;
  font-size: 0.85rem;
}
#moduleTable tbody tr {
  border-bottom: 1px solid #F1F5F9;
  transition: all 0.15s ease;
}
#moduleTable tbody tr:hover {
  background-color: #F8FAFC !important;
}
#moduleTable tbody td {
  padding: 14px 20px;
  color: #64748B;
  vertical-align: middle;
  border-bottom: 1px solid #F1F5F9;
}

.badge-active {
  background-color: rgba(22, 163, 74, 0.1);
  color: #16A34A;
  border: 1px solid rgba(22, 163, 74, 0.2);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: inline-block;
}

.badge-inactive {
  background-color: rgba(220, 38, 38, 0.1);
  color: #DC2626;
  border: 1px solid rgba(220, 38, 38, 0.2);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: inline-block;
}

.perm-badge {
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  margin-right: 3px;
  margin-bottom: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  background: rgba(234, 88, 12, 0.08);
  color: #EA580C;
  border: 1px solid rgba(234, 88, 12, 0.15);
  display: inline;
}

.none-text {
  color: #cbd5e1;
  font-size: 12px;
}

.module-modal .modal-dialog {
  max-width: 520px;
}
.module-modal .modal-content {
  border: none;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 0;
  overflow: hidden;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}
.module-modal .modal-content form {
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  width: 100%;
  overflow: hidden;
}
.module-modal .modal-header {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px 24px;
  border-radius: 24px 24px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.module-modal .modal-header .modal-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
}
.module-modal .modal-header .btn-close {
  background: transparent !important;
  border: none;
  color: #DC2626;
  opacity: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  transition: all 0.15s ease;
  box-shadow: none;
}
.module-modal .modal-header .btn-close i {
  display: block;
  width: 22px;
  height: 22px;
  stroke-width: 3;
}
.module-modal .modal-header .btn-close:hover {
  background: transparent !important;
  color: #B91C1C;
  transform: scale(1.1);
}
.module-modal .modal-header .btn-close:focus {
  box-shadow: none;
}
.module-modal .modal-body {
  padding: 20px 24px;
  overflow-y: auto;
  flex: 1;
}
.module-modal .modal-body::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.module-modal .modal-body::-webkit-scrollbar-track {
  background: transparent;
}
.module-modal .modal-body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
.module-modal .modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.25);
}
.module-modal .form-row {
  display: block;
  margin-bottom: 12px;
}
.module-modal .form-row .form-label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0F172A;
  width: 100%;
  margin-bottom: 6px;
  font-size: 0.85rem;
}
.module-modal .form-row .form-label.required::after {
  content: " *";
  color: #DC2626;
}
.module-modal .form-row .form-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.module-modal .box-input {
  padding: 7px 14px;
  font-size: 0.875rem;
  border: 1px solid #c2bcbc;
  border-radius: 6px;
  background-color: #fff;
  color: #0F172A;
  transition: all 0.3s ease;
  font-family: "Plus Jakarta Sans", sans-serif;
  width: 100%;
  border-color: #F1F5F9;
  height: 40px;
  font-size: 0.88rem;
}
.module-modal .box-input::placeholder {
  color: #adb5bd;
}
.module-modal .box-input:hover {
  border-color: rgba(234, 88, 12, 0.4);
}
.module-modal .box-input:focus {
  outline: none;
  border-color: #EA580C;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
  background-color: #fff;
}
.module-modal .box-input[readonly] {
  background-color: #F8FAFC;
  cursor: not-allowed;
  color: #64748B;
  border-style: dashed;
}
.module-modal .box-input:focus {
  border-color: #EA580C;
}
.module-modal .box-input.code-font {
  font-family: monospace;
}
.module-modal .permissions-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.module-modal .perm-checkbox-label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid #F1F5F9;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  background-color: #fff;
  transition: all 0.15s ease;
}
.module-modal .perm-checkbox-label input[type=checkbox] {
  accent-color: #EA580C;
}
.module-modal .perm-checkbox-label:hover {
  border-color: rgba(234, 88, 12, 0.4);
  background-color: #FFF7ED;
}
.module-modal .permissions-view-container {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.module-modal .status-options-container {
  display: flex;
  gap: 16px;
  width: 100%;
}
.module-modal .status-option, .module-modal .edit-status-option {
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 10px;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #F1F5F9;
  background-color: #fff;
  transition: all 0.15s ease;
}
.module-modal .status-option .radio-dot, .module-modal .edit-status-option .radio-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}
.module-modal .status-option .radio-dot .radio-dot-inner, .module-modal .edit-status-option .radio-dot .radio-dot-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  display: block;
  transition: all 0.15s ease;
}
.module-modal .status-option .status-label, .module-modal .edit-status-option .status-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #64748B;
  transition: all 0.15s ease;
}
.module-modal .status-option:hover, .module-modal .edit-status-option:hover {
  border-color: rgba(234, 88, 12, 0.4);
}
.module-modal .status-option.selected, .module-modal .edit-status-option.selected {
  border-color: #EA580C;
  background-color: #FFF7ED;
}
.module-modal .status-option.selected .radio-dot, .module-modal .edit-status-option.selected .radio-dot {
  border-color: #EA580C;
}
.module-modal .status-option.selected .radio-dot .radio-dot-inner, .module-modal .edit-status-option.selected .radio-dot .radio-dot-inner {
  background-color: #EA580C;
}
.module-modal .status-option.selected .status-label, .module-modal .edit-status-option.selected .status-label {
  color: #EA580C;
  font-weight: 600;
}
.module-modal .modal-actions {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

.dt-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid #F1F5F9;
  padding: 20px;
  margin-top: 16px;
}

#roleTable {
  border-color: #F1F5F9;
}
#roleTable thead tr th {
  background-color: #EA580C !important;
  color: #ffffff !important;
  padding: 14px 20px !important;
  border: none !important;
  font-weight: 700;
  font-size: 0.85rem;
}
#roleTable tbody tr {
  border-bottom: 1px solid #F1F5F9;
  transition: all 0.15s ease;
}
#roleTable tbody tr:hover {
  background-color: #F8FAFC;
}
#roleTable tbody td {
  padding: 14px 20px;
  color: #64748B;
  vertical-align: middle;
  border-bottom: 1px solid #F1F5F9;
}

.role-module-badge {
  background: #d4edda;
  color: #155724;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 4px;
}

.role-action-badge {
  background: rgba(234, 88, 12, 0.08);
  color: #EA580C;
  border: 1px solid rgba(234, 88, 12, 0.15);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  margin-left: 3px;
  margin-bottom: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
}

.role-view-action-badge {
  border: 1px solid #EA580C;
  color: #EA580C;
  padding: 3px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
}

.role-modal .modal-dialog {
  max-width: 600px;
}
.role-modal .modal-content {
  border: none;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 0;
  overflow: hidden;
}
.role-modal .modal-header {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px 24px;
  border-radius: 24px 24px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.role-modal .modal-header .modal-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
}
.role-modal .modal-header .btn-close {
  background: transparent !important;
  border: none;
  color: #DC2626;
  opacity: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  transition: all 0.15s ease;
  box-shadow: none;
}
.role-modal .modal-header .btn-close i {
  display: block;
  width: 22px;
  height: 22px;
  stroke-width: 3;
}
.role-modal .modal-header .btn-close:hover {
  background: transparent !important;
  color: #B91C1C;
  transform: scale(1.1);
}
.role-modal .modal-body {
  padding: 20px 24px;
}
.role-modal .form-row {
  margin-bottom: 16px;
}
.role-modal .form-row .form-label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0F172A;
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
}
.role-modal .form-row .form-label.required::after {
  content: " *";
  color: #DC2626;
}
.role-modal .box-input {
  padding: 7px 14px;
  font-size: 0.875rem;
  border: 1px solid #c2bcbc;
  border-radius: 6px;
  background-color: #fff;
  color: #0F172A;
  transition: all 0.3s ease;
  font-family: "Plus Jakarta Sans", sans-serif;
  width: 100%;
  border-color: #F1F5F9;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  min-height: 42px;
  background: #fff;
}
.role-modal .box-input::placeholder {
  color: #adb5bd;
}
.role-modal .box-input:hover {
  border-color: rgba(234, 88, 12, 0.4);
}
.role-modal .box-input:focus {
  outline: none;
  border-color: #EA580C;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
  background-color: #fff;
}
.role-modal .box-input[readonly] {
  background-color: #F8FAFC;
  cursor: not-allowed;
  color: #64748B;
  border-style: dashed;
}
.role-modal .box-input:focus {
  border-color: #EA580C;
  outline: none;
}
.role-modal .box-input[readonly] {
  background: #f9f9f9;
  color: #333;
}
.role-modal textarea.box-input {
  resize: vertical;
  min-height: 70px;
}
.role-modal .permissions-container {
  border: 1px solid #F1F5F9;
  border-radius: 8px;
  padding: 16px;
  background: #fafafa;
  max-height: 350px;
  overflow-y: auto;
}
.role-modal .permissions-container::-webkit-scrollbar {
  width: 6px;
}
.role-modal .permissions-container::-webkit-scrollbar-track {
  background: transparent;
}
.role-modal .permissions-container::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
.role-modal .permissions-container .menu-group-heading {
  font-size: 12px;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 2px solid #F1F5F9;
  display: block;
  padding-bottom: 4px;
  margin-bottom: 12px;
  margin-top: 16px;
}
.role-modal .permissions-container .menu-group-heading:first-child {
  margin-top: 0;
}
.role-modal .permissions-container .permission-module {
  margin-bottom: 12px;
  padding-left: 8px;
}
.role-modal .permissions-container .permission-module .module-check-label {
  font-size: 13px;
  cursor: pointer;
  background: #d4edda;
  color: #155724;
  padding: 3px 12px;
  border-radius: 12px;
  font-weight: 600;
  margin-bottom: 0;
}
.role-modal .permissions-container .permission-module .perm-check-label {
  font-size: 13px;
  cursor: pointer;
  margin-bottom: 0;
}
.role-modal .permissions-container .permission-module input[type=checkbox] {
  width: 15px;
  height: 15px;
  cursor: pointer;
  accent-color: #EA580C;
}
.role-modal .permissions-container .permission-module hr {
  border-color: #F1F5F9;
  margin: 12px 0;
}
.role-modal .modal-actions {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.role-modal .view-badge-container {
  background: rgba(234, 88, 12, 0.08);
  color: #EA580C;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.role-modal .view-badge-container .dot {
  width: 8px;
  height: 8px;
  background: #EA580C;
  border-radius: 50%;
  display: inline-block;
}

#teacherTable {
  border-color: #F1F5F9;
  width: 99%;
}
#teacherTable thead tr th {
  background-color: #EA580C !important;
  color: #ffffff !important;
  padding: 14px 10px !important;
  border: none !important;
  font-weight: 700;
  font-size: 0.85rem;
}
#teacherTable tbody tr {
  border-bottom: 1px solid #F1F5F9;
  transition: all 0.15s ease;
}
#teacherTable tbody tr:hover {
  background-color: #F8FAFC !important;
}
#teacherTable tbody td {
  padding: 14px 16px;
  color: #64748B;
  vertical-align: middle;
  border-bottom: 1px solid #F1F5F9;
  font-size: 0.85rem;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  background: #EA580C !important;
  border-color: #EA580C !important;
  color: #fff !important;
}

.teacher-photo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #F1F5F9;
}

.teacher-photo-placeholder {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
}
.teacher-photo-placeholder i {
  color: #bbb;
  font-size: 15px;
}

.gender-badge {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: inline-block;
}
.gender-badge.gender-male {
  background-color: rgba(37, 99, 235, 0.1);
  color: #2563EB;
  border: 1px solid rgba(37, 99, 235, 0.2);
}
.gender-badge.gender-female {
  background-color: rgba(220, 38, 38, 0.1);
  color: #DC2626;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

#studentTable {
  border-color: gray;
}
#studentTable thead tr th {
  background-color: #EA580C !important;
  color: #ffffff !important;
  padding: 14px 20px !important;
  border: none !important;
  font-weight: 700;
  font-size: 0.85rem;
}
#studentTable tbody tr {
  border-bottom: 1px solid #F1F5F9;
  transition: all 0.15s ease;
}
#studentTable tbody tr:hover {
  background-color: #F8FAFC !important;
}
#studentTable tbody td {
  padding: 12px 20px;
  color: #64748B;
  vertical-align: middle;
  border-bottom: 1px solid #F1F5F9;
}

.student-avatar-sm {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.student-avatar-init {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #FFF7ED;
  color: #EA580C;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.course-tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  background: #FFF7ED;
  color: #EA580C;
  border: 1px solid rgba(234, 88, 12, 0.18);
}

.student-modal-lg {
  max-width: 720px;
}

.student-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #EA580C;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #FFF7ED;
}
.student-section-title i[data-lucide] {
  width: 17px;
  height: 17px;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.student-section-title + .task-form-grid .form-row .form-label,
.student-section-title ~ .task-form-grid .form-row .form-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0F172A;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.student-section-title + .task-form-grid .form-row .form-label.required::after,
.student-section-title ~ .task-form-grid .form-row .form-label.required::after {
  content: " *";
  color: #DC2626;
}
.student-section-title + .task-form-grid .form-row .form-input-wrap,
.student-section-title ~ .task-form-grid .form-row .form-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  position: relative;
}

.profile-upload-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
}
.profile-upload-wrap .profile-preview-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: #e2e8f0;
  display: block;
}
.profile-upload-wrap .profile-upload-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #EA580C;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.35);
  border: 2px solid #fff;
  transition: all 0.15s ease;
}
.profile-upload-wrap .profile-upload-btn:hover {
  background: #C2410C;
}

.pwd-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 0;
  color: #94a3b8;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color all 0.15s ease;
}
.pwd-toggle:hover {
  color: #0F172A;
}

.course-list-box {
  background: #F8FAFC;
  border: 1px dashed rgba(234, 88, 12, 0.3);
  border-radius: 6px;
  padding: 12px 14px;
  min-height: 54px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.course-row-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #F1F5F9;
  border-radius: 6px;
  padding: 8px 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  gap: 10px;
  transition: all 0.15s ease;
}
.course-row-item:hover {
  border-color: rgba(234, 88, 12, 0.25);
  background: #FFF7ED;
}

.course-batch-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(37, 99, 235, 0.1);
  color: #2563EB;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.course-remove-btn {
  background: transparent;
  border: none;
  color: #DC2626;
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  transition: all 0.15s ease;
}
.course-remove-btn:hover {
  background: rgba(220, 38, 38, 0.08);
}

.student-radio-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0F172A;
  cursor: pointer;
}
.student-radio-label input[type=radio] {
  width: 17px;
  height: 17px;
  accent-color: #EA580C;
  cursor: pointer;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #F8FAFC;
  color: #0F172A;
  min-height: 100vh;
}

.lm-nav {
  background: #ffffff;
  border-bottom: 1px solid #F1F5F9;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}
.lm-nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lm-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.lm-nav__brand .lm-brand-icon {
  width: 40px;
  height: 40px;
  background: #FFF7ED;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #EA580C;
  flex-shrink: 0;
}
.lm-nav__brand .lm-brand-icon svg, .lm-nav__brand .lm-brand-icon i[data-lucide] {
  width: 20px;
  height: 20px;
  color: #EA580C;
}
.lm-nav__brand .lm-brand-text {
  display: flex;
  flex-direction: column;
}
.lm-nav__brand .lm-brand-text .lm-brand-name {
  font-size: 1rem;
  font-weight: 800;
  color: #EA580C;
  line-height: 1.2;
}
.lm-nav__brand .lm-brand-text .lm-brand-sub {
  font-size: 0.65rem;
  color: #0F172A;
  margin-top: 2px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.lm-nav__links {
  display: flex;
  gap: 8px;
}
.lm-nav__links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748B;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  transition: all 0.15s ease;
}
.lm-nav__links a:hover, .lm-nav__links a.active {
  background: #FFF7ED;
  color: #EA580C;
}

.lm-hero {
  background: linear-gradient(160deg, #fef3ea 0%, #fde8d4 40%, #fdf6f0 100%);
  padding: 48px 24px 80px;
  text-align: center;
  color: #0F172A;
  position: relative;
  overflow: hidden;
}
.lm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23EA580C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.lm-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFF7ED;
  color: #EA580C;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(234, 88, 12, 0.12);
}
.lm-hero__title {
  font-size: 1.9rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 10px;
}
.lm-hero__subtitle {
  font-size: 0.95rem;
  color: #64748B;
  max-width: 560px;
  margin: 0 auto;
}

.lm-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.lm-semester-pill {
  display: flex;
  justify-content: center;
  margin-top: -28px;
  margin-bottom: 32px;
}
.lm-semester-pill__badge {
  background: #EA580C;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 36px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.3);
  letter-spacing: 0.02em;
  z-index: 1000;
}

.lm-info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid #F1F5F9;
}
.lm-info-card__heading {
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lm-info-card__heading .dot {
  width: 8px;
  height: 8px;
  background: #EA580C;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.lm-info-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lm-info-card ul li {
  font-size: 0.9rem;
  color: #64748B;
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}
.lm-info-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #EA580C;
  font-weight: 700;
  font-size: 0.8rem;
  top: 1px;
}

.lm-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.lm-tab-btn {
  flex: 1;
  padding: 13px 10px;
  border: 2px solid #F1F5F9;
  background: #ffffff;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #64748B;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.lm-tab-btn:hover {
  border-color: #EA580C;
  color: #EA580C;
}
.lm-tab-btn.active {
  background: #EA580C;
  border-color: #EA580C;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.25);
}

.lm-tab-pane {
  display: none;
}
.lm-tab-pane.active {
  display: block;
}

.lm-content-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid #F1F5F9;
}
.lm-content-card__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 14px;
}
.lm-content-card__desc {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.lm-content-card__desc li {
  font-size: 0.92rem;
  color: #64748B;
  line-height: 1.55;
}

.lm-playlist {
  margin-top: 28px;
}
.lm-playlist + .lm-playlist {
  margin-top: 36px;
}
.lm-playlist__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #EA580C;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lm-playlist__label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #F1F5F9;
}

.lm-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.lm-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

.lm-sem-nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #F1F5F9;
}
.lm-sem-nav a {
  padding: 9px 20px;
  border: 2px solid #F1F5F9;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 700;
  color: #64748B;
  text-decoration: none;
  transition: all 0.15s ease;
}
.lm-sem-nav a:hover {
  border-color: #EA580C;
  color: #EA580C;
}
.lm-sem-nav a.current {
  background: #EA580C;
  border-color: #EA580C;
  color: #ffffff;
}

.lm-footer {
  background: #0F172A;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 28px 24px;
  font-size: 0.82rem;
}
.lm-footer strong {
  color: #ffffff;
}

@media (max-width: 600px) {
  .lm-hero__title {
    font-size: 1.4rem;
  }
  .lm-tabs {
    flex-direction: column;
  }
  .lm-content-card {
    padding: 20px 16px;
  }
  .lm-info-card {
    padding: 20px 16px;
  }
}

/*# sourceMappingURL=style.css.map */
