:root {
  --lakoni-dark: #0b131b;
  --lakoni-sidebar-text: #c2c7d0;
  --lakoni-blue: #007bff;
  --lakoni-info: #17a2b8;
  --lakoni-success: #28a745;
  --lakoni-warning: #ffc107;
  --lakoni-danger: #dc3545;
  --lakoni-body: #eaecf0;
  --lakoni-border: #dee2e6;
}

.bg-info-v1 {
  background-color: var(--lakoni-info) !important;
  color: #fff !important;
}

.bg-success-v1 {
  background-color: var(--lakoni-success) !important;
  color: #fff !important;
}

.bg-warning-v1 {
  background-color: var(--lakoni-warning) !important;
  color: #1f2d3d !important;
}

.bg-danger-v1 {
  background-color: var(--lakoni-danger) !important;
  color: #fff !important;
}

.bg-indigo-v1 {
  background-color: #6610f2 !important;
  color: #fff !important;
}

.bg-purple-v1 {
  background-color: #6f42c1 !important;
  color: #fff !important;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  background: var(--lakoni-body);
  color: #212529 !important;
  font-family: "Source Sans Pro", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 14px;
  letter-spacing: 0;
}

a {
  color: var(--lakoni-blue);
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-header {
  min-height: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--lakoni-dark);
  color: rgba(255, 255, 255, 0.85);
  z-index: 1034;
}

.main-header a,
.main-header button {
  color: rgba(255, 255, 255, 0.85);
}

.main-header a:hover,
.main-header button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.main-header .nav-link {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: 0 1.15rem;
  font-weight: 600;
  text-decoration: none;
}

.main-header .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-bottom: 3px solid var(--lakoni-blue);
}

.side-header-inner,
.top-navbar-inner {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-navbar-left,
.top-navbar-menu,
.top-navbar-right {
  min-height: 56px;
  display: flex;
  align-items: center;
}

.top-navbar-left {
  flex: 1 1 auto;
  min-width: 0;
}

.top-navbar-menu {
  margin-left: .75rem;
}

.top-navbar-right {
  flex: 0 0 auto;
}

.navbar-brand {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: #fff !important;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .25rem;
  background: transparent;
  border: none;
  color: #00d2ff;
  font-weight: 800;
}

.brand-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.navbar-logo {
  width: auto;
  height: 38px;
  object-fit: contain;
  display: block;
}

.main-sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 250px;
  background: var(--lakoni-dark);
  color: var(--lakoni-sidebar-text);
  z-index: 1038;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .22);
  overflow-x: hidden;
}

.main-sidebar .brand-text,
.main-sidebar .user-panel div,
.main-sidebar .nav-link span {
  transition: opacity .3s cubic-bezier(0.4, 0, 0.2, 1), max-width .3s cubic-bezier(0.4, 0, 0.2, 1), margin .3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  max-width: 200px;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  white-space: nowrap;
}

.brand-link {
  height: 56px;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .8rem .5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  color: #fff !important;
  text-decoration: none;
}

.brand-text {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.user-panel {
  margin: 1rem .5rem 1rem;
  padding: 0 .85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #6c757d;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.nav-sidebar {
  padding: 0 .5rem .75rem;
}

.nav-sidebar .nav-link {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .72rem 1rem;
  margin-bottom: .25rem;
  border-radius: .375rem;
  color: var(--lakoni-sidebar-text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all .2s;
}

.nav-sidebar .nav-link:hover,
.nav-sidebar .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, .1);
}

.side-header {
  position: sticky;
  top: 0;
  margin-left: 250px;
}

.main-sidebar,
.content-wrapper,
.side-header,
.app-footer {
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-wrapper {
  flex: 1 0 auto;
}

.app-footer {
  flex-shrink: 0;
  padding: 1rem 0;
  background: #fff;
  border-top: 1px solid #f1f5f9;
  color: #64748b;
}

.brand-text-full {
  opacity: 1;
  visibility: visible;
}

.brand-text-mini {
  opacity: 0;
  visibility: hidden;
}

.sidebar-collapse .brand-text-full {
  opacity: 0;
  visibility: hidden;
}

.sidebar-collapse .brand-text-mini {
  opacity: 1;
  visibility: visible;
}

.sidebar-collapse .main-sidebar {
  width: 4.6rem;
}

.sidebar-collapse .main-sidebar .brand-text,
.sidebar-collapse .main-sidebar .user-panel div,
.sidebar-collapse .main-sidebar .nav-link span {
  max-width: 0;
  opacity: 0;
  margin: 0 !important;
  pointer-events: none;
}

.sidebar-collapse .main-sidebar .brand-link,
.sidebar-collapse .main-sidebar .user-panel,
.sidebar-collapse .main-sidebar .nav-link {
  justify-content: center !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  gap: 0 !important;
}

.sidebar-collapse .main-sidebar .nav-link i {
  margin-right: 0;
  font-size: 1.25rem;
}

.sidebar-collapse .content-wrapper,
.sidebar-collapse .side-header {
  margin-left: 4.6rem !important;
}

.sidebar-collapse .app-footer {
  margin-left: 0 !important;
}

html[data-area="admin"] .content-wrapper {
  margin-left: 250px;
}

html[data-area="admin"] .top-navbar {
  display: none;
}

html[data-area="admin"] .app-footer {
  margin-left: 0;
}

html:not([data-area="admin"]) .main-sidebar,
html:not([data-area="admin"]) .side-header {
  display: none;
}

html:not([data-area="admin"]) .content-wrapper {
  margin-left: 0 !important;
}

html[data-area="teacher"] .student-link,
html[data-area="student"] .teacher-link,
html[data-area="app"] .teacher-link,
html[data-area="app"] .student-link {
  display: none !important;
}

.content-header {
  padding: 15px .5rem;
}

.content-header h1,
.content-header h2 {
  margin: 0;
  color: #212529;
  font-size: 1.75rem;
  font-weight: 400;
}

.breadcrumb {
  display: flex;
  justify-content: flex-end;
  gap: .5rem;
  color: #6c757d;
  font-size: .875rem;
}

.content {
  padding: 0 0 1rem;
}

.content-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}

html[data-area="admin"] .content-container {
  max-width: none;
  padding-left: 15px;
  padding-right: 15px;
}

.content-wrapper>.content {
  padding-top: 15px;
}

html[data-area="teacher"] .content-wrapper>.content,
html[data-area="student"] .content-wrapper>.content {
  padding-top: 1.5rem;
}

.content .max-w-5xl,
.content .max-w-6xl,
.content .max-w-7xl,
.content .max-w-none {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.content header {
  margin-bottom: 1rem !important;
}

.content h1 {
  font-size: 1.75rem !important;
  font-weight: 400 !important;
  color: #212529 !important;
}

.content h2,
.content h3 {
  letter-spacing: 0;
}

.bg-white.rounded,
.bg-white.rounded-lg,
.bg-white.rounded-xl,
.bg-white.rounded-2xl,
.card-like {
  border-radius: .25rem !important;
  border: 0 solid rgba(0, 0, 0, .125) !important;
  box-shadow: 0 0 1px rgba(0, 0, 0, .125), 0 1px 3px rgba(0, 0, 0, .2) !important;
}

.rounded,
.rounded-lg,
.rounded-xl,
.rounded-2xl {
  border-radius: .25rem !important;
}

.shadow-lg,
.shadow-2xl,
.shadow-sm,
.hover\:shadow-md:hover {
  box-shadow: 0 0 1px rgba(0, 0, 0, .125), 0 1px 3px rgba(0, 0, 0, .2) !important;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

thead tr,
.bg-slate-50.border-b {
  background: #eceef0 !important;
}

th {
  color: #495057 !important;
  font-size: .75rem;
  font-weight: 700 !important;
  text-transform: uppercase;
  border-bottom: 2px solid var(--lakoni-border) !important;
}

td {
  border-top: 1px solid var(--lakoni-border) !important;
}

tr:hover td {
  background: rgba(0, 123, 255, .03);
}

input,
select,
textarea {
  border-radius: .25rem !important;
  border-color: #ced4da !important;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #80bdff !important;
  box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .12) !important;
}

button,
a[class*="bg-indigo"],
a[class*="bg-slate-900"],
button[class*="bg-indigo"],
button[class*="bg-slate-900"] {
  border-radius: .25rem !important;
}

.bg-indigo-600,
.hover\:bg-indigo-500:hover,
.hover\:bg-indigo-700:hover {
  background-color: var(--lakoni-blue) !important;
}

.text-indigo-600,
.text-indigo-700,
.text-indigo-800,
.hover\:text-indigo-600:hover {
  color: var(--lakoni-blue) !important;
}

.bg-indigo-50,
.bg-indigo-100 {
  background-color: #e7f1ff !important;
}

.border-indigo-100,
.border-indigo-200,
.hover\:border-indigo-300:hover {
  border-color: #b8daff !important;
}

.small-box-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 768px) {
  .small-box-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.small-box {
  position: relative;
  display: block;
  min-height: 100px;
  margin-bottom: 1rem;
  border-radius: .25rem;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 0 1px rgba(0, 0, 0, .125), 0 1px 3px rgba(0, 0, 0, .2);
}

.small-box .inner {
  padding: 15px 15px 5px;
}

.small-box h3 {
  margin: 0 0 10px;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.small-box h3 small {
  font-size: 1.1rem;
  font-weight: 400;
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.9);
  vertical-align: middle;
}

.small-box p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
  display: none;
  /* Hide if merged into H3 */
}

.small-box .icon {
  position: absolute;
  right: 15px;
  top: 12px;
  color: rgba(0, 0, 0, .15);
  font-size: 52px;
}

.small-box-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  padding: 3px 0;
  color: rgba(255, 255, 255, .85);
  background: rgba(0, 0, 0, .1);
  text-align: center;
  text-decoration: none;
}

.small-box-footer:hover {
  color: #fff;
  background: rgba(0, 0, 0, .15);
}

.bg-info-box {
  background: var(--lakoni-info);
}

.bg-success-box {
  background: var(--lakoni-success);
}

.bg-warning-box {
  background: var(--lakoni-warning);
  color: #1f2d3d;
}

.bg-primary-box {
  background: var(--lakoni-blue);
}

.callout {
  border-radius: .25rem;
  background: #fff;
  border: 1px solid #e9ecef;
  border-left: 5px solid var(--lakoni-info);
  box-shadow: 0 0 1px rgba(0, 0, 0, .125), 0 1px 3px rgba(0, 0, 0, .2);
  padding: 1rem;
}

.app-footer {
  padding: 1rem 0;
  color: #869099;
  background: #fff;
  border-top: 1px solid var(--lakoni-border);
  position: relative;
  z-index: 1040;
  width: 100%;
}

@media (max-width: 900px) {
  .main-sidebar {
    position: static;
    width: 100%;
    box-shadow: none;
  }

  html[data-area="admin"] .side-header,
  html[data-area="admin"] .content-wrapper,
  html[data-area="admin"] .app-footer {
    margin-left: 0;
  }

  html[data-area="admin"] .side-header {
    position: static;
  }

  .main-header .nav-link {
    padding: 0 .7rem;
  }

  .top-navbar-inner {
    flex-wrap: wrap;
  }

  .top-navbar-left {
    flex-wrap: wrap;
  }

  .top-navbar-menu {
    margin-left: 0;
  }

  .content-container,
  html[data-area="admin"] .content-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .breadcrumb {
    justify-content: flex-start;
    margin-top: .5rem;
  }
}

.login-page {
  min-height: 100vh;
  background: #0b131b !important;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-x: hidden;
}

.glow-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.blob {
  position: absolute;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  filter: blur(50px);
  background: radial-gradient(circle, rgba(0, 210, 255, .15) 0%, rgba(0, 0, 0, 0) 70%);
}

.blob-1 {
  top: -10%;
  left: -10%;
}

.blob-2 {
  right: -10%;
  bottom: -10%;
}

.login-container {
  width: 100%;
  max-width: 420px;
}

.login-card {
  background: rgba(15, 23, 42, .8);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  padding: 38px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .7);
  backdrop-filter: blur(20px);
}

.login-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-bottom: .25rem;
}

.login-brand .brand-mark {
  width: 46px;
  height: 46px;
  background: transparent;
  border-color: rgba(255, 255, 255, .12);
}

.login-brand-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.login-brand-name {
  font-size: 2.65rem;
  font-weight: 800;
  letter-spacing: 5px;
  color: #fff;
}

.login-tagline {
  color: rgba(255, 255, 255, .6);
  text-align: center;
  font-size: .85rem;
  letter-spacing: 1px;
}

.login-divider {
  height: 1px;
  margin: 24px 0;
  border: 0;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, .35), transparent);
}

.login-field {
  position: relative;
  margin-bottom: 1rem;
}

.login-field input {
  width: 100%;
  background: rgba(235, 244, 255, 0.95) !important;
  border: 1px solid rgba(255, 255, 255, .1) !important;
  color: #0b131b !important;
  padding: 13px 16px 13px 43px;
  border-radius: 12px;
}

.login-field input:focus {
  border-color: #00d2ff !important;
  background: rgba(235, 244, 255, 0.95) !important;
  box-shadow: 0 0 0 4px rgba(0, 210, 255, .1) !important;
}

.login-field i {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #0b131b;
  opacity: 0.6;
}

.login-field .password-toggle {
  left: auto;
  right: 16px;
  cursor: pointer;
}

.login-button {
  width: 100%;
  border: 0;
  border-radius: .75rem !important;
  padding: 13px;
  background: linear-gradient(135deg, #00d2ff 0%, #008eb3 100%) !important;
  color: #001018 !important;
  font-weight: 800;
}

.login-demo {
  margin-top: 1.25rem;
  display: grid;
  gap: .65rem;
}

.login-demo-item {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: .75rem;
  background: rgba(255, 255, 255, .05);
  padding: .65rem .8rem;
}

.public-shell {
  min-height: 100vh;
  background: var(--lakoni-body);
}

.card-v1 {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: .5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  margin-bottom: 0;
  overflow: hidden;
}

.card-header-v1 {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-header-v1 h3 {
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.card-body-v1 {
  padding: 1.5rem;
  background: #f8fafc;
}

.card-footer-v1 {
  background: #f8fafc;
  border-top: 1px solid rgba(0, 0, 0, .05);
  display: flex;
  gap: .75rem;
  padding: 1rem 1.5rem;
}

.toolbar-v1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}

.btn-v1,
.btn-xs-v1 {
  border: 1px solid transparent;
  border-radius: .5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-v1 {
  font-size: .875rem;
  padding: .6rem 1.25rem;
}

.btn-xs-v1 {
  font-size: .75rem;
  padding: .4rem .6rem;
  border-radius: .375rem;
}

.btn-primary-v1 {
  background: #3b82f6;
  color: #fff !important;
}

.btn-primary-v1:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.5);
}

.btn-info-v1 {
  background: #06b6d4;
  color: #fff !important;
}

.btn-info-v1:hover {
  background: #0891b2;
}

.btn-success-v1 {
  background: #10b981;
  color: #fff !important;
}

.btn-success-v1:hover {
  background: #059669;
}

.btn-warning-v1 {
  background: #f59e0b;
  color: #fff !important;
}

.btn-warning-v1:hover {
  background: #d97706;
}

.btn-danger-v1 {
  background: #ef4444;
  color: #fff !important;
}

.btn-danger-v1:hover {
  background: #dc2626;
}

.btn-secondary-v1 {
  background: #64748b;
  color: #fff !important;
}

.btn-secondary-v1:hover {
  background: #475569;
}

.btn-default-v1 {
  background: #fff;
  border-color: #e2e8f0;
  color: #64748b !important;
}

.btn-default-v1:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.table-v1 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: .75rem;
  overflow: hidden;
}

.table-v1 thead th {
  background: #f1f5f9;
  border-top: 1px solid #e2e8f0;
  border-bottom: 2px solid #e2e8f0;
  color: #475569;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.5rem;
  text-align: left;
}

.table-v1 tbody td {
  border-bottom: 1px solid #f1f5f9;
  padding: 0.25rem 1.5rem !important;
  vertical-align: middle;
  color: #334155;
  font-size: .875rem;
}

/* DataTables Override */
table.dataTable tbody th,
table.dataTable tbody td {
  padding: 0.25rem 1.5rem !important;
}

.table-v1 tbody tr:hover {
  background: #f1f5f9/50;
}

.table-v1 tbody tr:last-child td {
  border-bottom: 0;
}

.badge-v1 {
  border-radius: .375rem;
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .5rem;
  text-transform: uppercase;
}

.badge-success-v1 {
  background: #dcfce7;
  color: #166534;
}

.badge-secondary-v1 {
  background: #f1f5f9;
  color: #475569;
}

.badge-warning-v1 {
  background: #fef3c7;
  color: #92400e;
}

.badge-danger-v1 {
  background: #fee2e2;
  color: #991b1b;
}

.badge-info-v1 {
  background: #e0f2fe;
  color: #075985;
}

/* DataTables — Bootstrap 4 inspired styling */
.dataTables_wrapper {
  padding-top: 0;
}

.dataTables_wrapper .dt-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 0;
  flex-wrap: wrap;
  gap: .5rem;
}

.dataTables_wrapper .dt-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 0;
  border-top: 1px solid var(--lakoni-border);
  flex-wrap: wrap;
  gap: .5rem;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
  margin-bottom: 0;
  padding: 0;
  font-size: .875rem;
}

.dataTables_wrapper .dataTables_length select {
  border: 1px solid var(--lakoni-border);
  border-radius: .25rem;
  padding: .375rem 2rem .375rem .75rem;
  font-size: .875rem;
  background-color: #fff;
  margin: 0 .25rem;
}

.dataTables_wrapper .dataTables_filter input {
  border: 1px solid var(--lakoni-border) !important;
  border-radius: .25rem !important;
  padding: .375rem .75rem !important;
  font-size: .875rem !important;
  margin-left: .5rem !important;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}

.dataTables_wrapper .dataTables_filter input:focus {
  border-color: var(--lakoni-blue) !important;
  box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) !important;
}

.dataTables_wrapper .dataTables_info {
  font-size: .8125rem;
  color: #6c757d;
  padding: 0;
}

.dataTables_wrapper .dataTables_paginate {
  padding: 0;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  display: inline-block;
  padding: .375rem .75rem;
  margin: 0 .125rem;
  font-size: .875rem;
  line-height: 1.5;
  color: var(--lakoni-blue);
  background: #fff;
  border: 1px solid var(--lakoni-border) !important;
  border-radius: .25rem;
  cursor: pointer;
  text-decoration: none;
  transition: all .15s;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: #e9ecef !important;
  border-color: #dee2e6 !important;
  color: var(--lakoni-blue) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: var(--lakoni-blue) !important;
  color: #fff !important;
  border-color: var(--lakoni-blue) !important;
  border-radius: .25rem;
  font-weight: 600;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
  color: #6c757d !important;
  background: #fff !important;
  border-color: var(--lakoni-border) !important;
  cursor: not-allowed;
  opacity: .65;
}

/* Table striped rows like Bootstrap */
table.dataTable tbody tr:nth-child(odd) {
  background-color: rgba(0, 0, 0, .02);
}

table.dataTable tbody tr:nth-child(even) {
  background-color: #fff;
}

table.dataTable tbody tr:hover {
  background-color: rgba(0, 123, 255, .04) !important;
}

table.dataTable thead th {
  border-bottom: 2px solid var(--lakoni-border) !important;
  font-weight: 700;
  font-size: .8125rem;
  text-transform: uppercase;
  letter-spacing: .025em;
  color: #495057;
}

table.dataTable tbody td {
  border-bottom: 1px solid #f1f5f9 !important;
  vertical-align: middle;
  font-size: .875rem;
}

table.dataTable.no-footer {
  border-bottom: 1px solid var(--lakoni-border) !important;
}

/* SweetAlert2 custom styling to match LAKONI theme */
.swal2-popup.swal2-lakoni {
  font-family: "Source Sans Pro", system-ui, sans-serif;
  border-radius: .75rem;
  font-size: .9375rem;
}

.swal2-lakoni .swal2-title.swal2-lakoni-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.swal2-lakoni .swal2-confirm.swal2-lakoni-confirm {
  border-radius: .375rem;
  font-weight: 600;
  padding: .5rem 1.25rem;
}

.swal2-lakoni .swal2-cancel.swal2-lakoni-cancel {
  border-radius: .375rem;
  font-weight: 600;
  padding: .5rem 1.25rem;
}

/* Form Styles */
.form-shell {
  background: #fff;
  border-radius: .75rem;
  padding: 1.5rem;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 1rem auto;
}

.form-group-v1 {
  margin-bottom: 1rem;
}

.form-label-v1 {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: .5rem;
  letter-spacing: 0.025em;
}

.form-control-v1 {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: .5rem;
  padding: .75rem 1rem;
  outline: none;
  transition: all 0.2s;
}

.form-control-v1:focus {
  background: #fff;
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

/* Tom Select Customization */
.ts-wrapper.single .ts-control,
.ts-wrapper.multi .ts-control {
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 0.625rem 0.875rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  background-color: #f8fafc;
  transition: all 0.2s;
  min-height: 42px;
}

.ts-wrapper.focus .ts-control {
  background-color: #fff;
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
  outline: none;
}

.ts-wrapper.multi .ts-control>div {
  background: #eff6ff;
  color: #1e40af;
  border-radius: 0.375rem;
  border: 1px solid #dbeafe;
  padding: 2px 8px;
  font-weight: 500;
}

.ts-wrapper.multi .ts-control>div .remove {
  border-left: 1px solid #bfdbfe;
  margin-left: 6px;
}

.ts-dropdown {
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  margin-top: 5px;
}

.ts-dropdown .active {
  background-color: #f1f5f9;
  color: #3b82f6;
}

.ts-dropdown .option {
  padding: 8px 12px;
}