/*
 * Metronic Tailwind CSS Framework
 * Version: 9.3.4
 * Author: Keenthemes
 * Website: https://www.keenthemes.com
 */

/* Root Variables */
:root {
  --header-height: 58px;
  --sidebar-width: 58px;
  --navbar-height: 56px;

  /* Colors */
  --kt-primary: #3b82f6;
  --kt-primary-rgb: 59, 130, 246;
  --kt-secondary: #6b7280;
  --kt-secondary-rgb: 107, 114, 128;
  --kt-success: #10b981;
  --kt-success-rgb: 16, 185, 129;
  --kt-info: #06b6d4;
  --kt-info-rgb: 6, 182, 212;
  --kt-warning: #f59e0b;
  --kt-warning-rgb: 245, 158, 11;
  --kt-danger: #ef4444;
  --kt-danger-rgb: 239, 68, 68;
  --kt-light: #f8fafc;
  --kt-light-rgb: 248, 250, 252;
  --kt-dark: #1e293b;
  --kt-dark-rgb: 30, 41, 59;

  /* Background Colors */
  --kt-background: #ffffff;
  --kt-background-rgb: 255, 255, 255;
  --kt-muted: #f8fafc;
  --kt-muted-rgb: 248, 250, 252;
  --kt-accent: #f1f5f9;
  --kt-accent-rgb: 241, 245, 249;

  /* Text Colors */
  --kt-foreground: #0f172a;
  --kt-foreground-rgb: 15, 23, 42;
  --kt-muted-foreground: #64748b;
  --kt-muted-foreground-rgb: 100, 116, 139;
  --kt-secondary-foreground: #475569;
  --kt-secondary-foreground-rgb: 71, 85, 105;

  /* Border Colors */
  --kt-border: #e2e8f0;
  --kt-border-rgb: 226, 232, 240;

  /* Additional variables for compatibility */
  --kt-card-bg: #ffffff;
  --kt-text-color: #0f172a;
  --kt-border-color: #e2e8f0;
}

/* Dark Theme Variables */
[data-kt-theme-mode="dark"] {
  --kt-background: #0f172a;
  --kt-background-rgb: 15, 23, 42;
  --kt-muted: #1e293b;
  --kt-muted-rgb: 30, 41, 59;
  --kt-accent: #334155;
  --kt-accent-rgb: 51, 65, 85;

  /* Improved text colors for better contrast */
  --kt-foreground: #ffffff;
  --kt-foreground-rgb: 255, 255, 255;
  --kt-muted-foreground: #cbd5e1;
  --kt-muted-foreground-rgb: 203, 213, 225;
  --kt-secondary-foreground: #e2e8f0;
  --kt-secondary-foreground-rgb: 226, 232, 240;

  --kt-border: #475569;
  --kt-border-rgb: 71, 85, 105;

  /* Additional variables for compatibility */
  --kt-card-bg: #1e293b;
  --kt-text-color: #ffffff;
  --kt-border-color: #475569;
}

/* Base Styles */
* {
  box-sizing: border-box;
}

html {
  height: 100%;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: rgb(var(--kt-background-rgb));
  color: rgb(var(--kt-foreground-rgb));
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Layout Components */
.kt-container-fluid {
  width: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Card Components */
.kt-card {
  background-color: rgb(var(--kt-background-rgb));
  border: 1px solid rgb(var(--kt-border-rgb));
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.kt-card-header {
  padding: 1.5rem 1.5rem 0 1.5rem;
  border-bottom: 1px solid rgb(var(--kt-border-rgb));
  margin-bottom: 1.5rem;
}

.kt-card-content {
  padding: 1.5rem;
}

.kt-card-footer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  border-top: 1px solid rgb(var(--kt-border-rgb));
  margin-top: 1.5rem;
}

.kt-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgb(var(--kt-foreground-rgb));
  margin: 0 0 1rem 0;
}

.kt-card-toolbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Button Components */
.kt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  border-radius: 0.375rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
  position: relative;
  overflow: hidden;
}

.kt-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.kt-btn-primary {
  background-color: rgb(var(--kt-primary-rgb));
  color: white;
  border-color: rgb(var(--kt-primary-rgb));
}

.kt-btn-primary:hover {
  background-color: rgb(var(--kt-primary-rgb) / 0.9);
  border-color: rgb(var(--kt-primary-rgb) / 0.9);
}

.kt-btn-secondary {
  background-color: rgb(var(--kt-secondary-rgb));
  color: white;
  border-color: rgb(var(--kt-secondary-rgb));
}

.kt-btn-success {
  background-color: rgb(var(--kt-success-rgb));
  color: white;
  border-color: rgb(var(--kt-success-rgb));
}

.kt-btn-info {
  background-color: rgb(var(--kt-info-rgb));
  color: white;
  border-color: rgb(var(--kt-info-rgb));
}

.kt-btn-warning {
  background-color: rgb(var(--kt-warning-rgb));
  color: white;
  border-color: rgb(var(--kt-warning-rgb));
}

.kt-btn-danger {
  background-color: rgb(var(--kt-danger-rgb));
  color: white;
  border-color: rgb(var(--kt-danger-rgb));
}

.kt-btn-outline {
  background-color: transparent;
  color: rgb(var(--kt-foreground-rgb));
  border-color: rgb(var(--kt-border-rgb));
}

.kt-btn-outline:hover {
  background-color: rgb(var(--kt-muted-rgb));
}

.kt-btn-outline.kt-btn-primary {
  color: rgb(var(--kt-primary-rgb));
  border-color: rgb(var(--kt-primary-rgb));
}

.kt-btn-outline.kt-btn-primary:hover {
  background-color: rgb(var(--kt-primary-rgb));
  color: white;
}

.kt-btn-ghost {
  background-color: transparent;
  color: rgb(var(--kt-foreground-rgb));
  border-color: transparent;
}

.kt-btn-ghost:hover {
  background-color: rgb(var(--kt-muted-rgb));
}

.kt-btn-sm {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
}

.kt-btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.kt-btn-icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
}

.kt-btn-icon.kt-btn-sm {
  width: 2rem;
  height: 2rem;
}

/* Form Components */
.kt-input {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(var(--kt-foreground-rgb));
  background-color: rgb(var(--kt-background-rgb));
  border: 1px solid rgb(var(--kt-border-rgb));
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.kt-input:focus {
  outline: none;
  border-color: rgb(var(--kt-primary-rgb));
  box-shadow: 0 0 0 3px rgb(var(--kt-primary-rgb) / 0.1);
}

.kt-input::placeholder {
  color: rgb(var(--kt-muted-foreground-rgb));
}

.kt-select {
  display: block;
  width: 100%;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(var(--kt-foreground-rgb));
  background-color: rgb(var(--kt-background-rgb));
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  border: 1px solid rgb(var(--kt-border-rgb));
  border-radius: 0.375rem;
  appearance: none;
}

.kt-select:focus {
  outline: none;
  border-color: rgb(var(--kt-primary-rgb));
  box-shadow: 0 0 0 3px rgb(var(--kt-primary-rgb) / 0.1);
}

.kt-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(var(--kt-foreground-rgb));
  margin-bottom: 0.5rem;
}

.kt-form-label.required::after {
  content: " *";
  color: rgb(var(--kt-danger-rgb));
}

.kt-form-text {
  font-size: 0.75rem;
  color: rgb(var(--kt-muted-foreground-rgb));
  margin-top: 0.25rem;
}

/* Table Components */
.kt-table-responsive {
  overflow-x: auto;
}

.kt-table {
  width: 100%;
  border-collapse: collapse;
}

.kt-table th,
.kt-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgb(var(--kt-border-rgb));
}

.kt-table th {
  font-weight: 600;
  color: rgb(var(--kt-muted-foreground-rgb));
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.kt-table tbody tr:hover {
  background-color: rgb(var(--kt-muted-rgb));
}

/* Menu Components */
.kt-menu {
  position: relative;
}

.kt-menu-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 50;
  min-width: 12rem;
  background-color: rgb(var(--kt-background-rgb));
  border: 1px solid rgb(var(--kt-border-rgb));
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  display: none;
}

.kt-menu-dropdown.show {
  display: block;
}

.kt-menu-item {
  display: block;
}

.kt-menu-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: rgb(var(--kt-foreground-rgb));
  text-decoration: none;
  transition: background-color 0.15s ease-in-out;
}

.kt-menu-link:hover {
  background-color: rgb(var(--kt-muted-rgb));
}

.kt-menu-link.active {
  background-color: rgb(var(--kt-primary-rgb) / 0.1);
  color: rgb(var(--kt-primary-rgb));
}

.kt-menu-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kt-menu-title {
  flex: 1;
}

.kt-menu-separator {
  height: 1px;
  background-color: rgb(var(--kt-border-rgb));
  margin: 0.5rem 0;
}

/* Modal Components */
.kt-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
}

.kt-modal.show {
  display: flex;
}

.kt-modal-dialog {
  position: relative;
  width: auto;
  max-width: 500px;
  margin: 1.75rem;
}

.kt-modal-content {
  position: relative;
  background-color: rgb(var(--kt-background-rgb));
  border: 1px solid rgb(var(--kt-border-rgb));
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.kt-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 0 1.5rem;
  border-bottom: 1px solid rgb(var(--kt-border-rgb));
}

.kt-modal-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgb(var(--kt-foreground-rgb));
  margin: 0;
}

.kt-modal-body {
  padding: 1.5rem;
}

.kt-modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 0 1.5rem 1.5rem 1.5rem;
  border-top: 1px solid rgb(var(--kt-border-rgb));
}

/* Alert Components */
.kt-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid;
  margin-bottom: 1rem;
}

.kt-alert-info {
  background-color: rgb(var(--kt-info-rgb) / 0.1);
  border-color: rgb(var(--kt-info-rgb) / 0.2);
  color: rgb(var(--kt-info-rgb));
}

.kt-alert-success {
  background-color: rgb(var(--kt-success-rgb) / 0.1);
  border-color: rgb(var(--kt-success-rgb) / 0.2);
  color: rgb(var(--kt-success-rgb));
}

.kt-alert-warning {
  background-color: rgb(var(--kt-warning-rgb) / 0.1);
  border-color: rgb(var(--kt-warning-rgb) / 0.2);
  color: rgb(var(--kt-warning-rgb));
}

.kt-alert-danger {
  background-color: rgb(var(--kt-danger-rgb) / 0.1);
  border-color: rgb(var(--kt-danger-rgb) / 0.2);
  color: rgb(var(--kt-danger-rgb));
}

.kt-alert-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.kt-alert-text {
  flex: 1;
  font-size: 0.875rem;
}

.kt-alert-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  opacity: 0.7;
}

.kt-alert-close:hover {
  opacity: 1;
}

/* Badge Components */
.kt-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 0.25rem;
}

.kt-badge-sm {
  padding: 0.125rem 0.375rem;
  font-size: 0.625rem;
}

.kt-badge-primary {
  background-color: rgb(var(--kt-primary-rgb));
  color: white;
}

.kt-badge-light-primary {
  background-color: rgb(var(--kt-primary-rgb) / 0.1);
  color: rgb(var(--kt-primary-rgb));
}

.kt-badge-success {
  background-color: rgb(var(--kt-success-rgb));
  color: white;
}

.kt-badge-light-success {
  background-color: rgb(var(--kt-success-rgb) / 0.1);
  color: rgb(var(--kt-success-rgb));
}

.kt-badge-info {
  background-color: rgb(var(--kt-info-rgb));
  color: white;
}

.kt-badge-light-info {
  background-color: rgb(var(--kt-info-rgb) / 0.1);
  color: rgb(var(--kt-info-rgb));
}

.kt-badge-warning {
  background-color: rgb(var(--kt-warning-rgb));
  color: white;
}

.kt-badge-light-warning {
  background-color: rgb(var(--kt-warning-rgb) / 0.1);
  color: rgb(var(--kt-warning-rgb));
}

/* Drawer Components */
.kt-drawer {
  position: fixed;
  z-index: 1040;
  background-color: rgb(var(--kt-background-rgb));
  border: 1px solid rgb(var(--kt-border-rgb));
  transition: transform 0.3s ease-in-out;
}

.kt-drawer-start {
  top: 0;
  left: 0;
  bottom: 0;
  transform: translateX(-100%);
}

.kt-drawer-start.show {
  transform: translateX(0);
}

.kt-drawer-end {
  top: 0;
  right: 0;
  bottom: 0;
  transform: translateX(100%);
}

.kt-drawer-end.show {
  transform: translateX(0);
}

.kt-drawer-content {
  height: 100%;
  overflow-y: auto;
}

/* Spinner Components */
.kt-spinner {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: kt-spin 1s linear infinite;
}

.kt-spinner-sm {
  width: 0.75rem;
  height: 0.75rem;
  border-width: 1px;
}

.kt-spinner-white {
  border-color: white;
  border-right-color: transparent;
}

@keyframes kt-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Utility Classes */
.text-mono {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.text-primary {
  color: rgb(var(--kt-primary-rgb));
}

.text-secondary {
  color: rgb(var(--kt-secondary-rgb));
}

.text-success {
  color: rgb(var(--kt-success-rgb));
}

.text-info {
  color: rgb(var(--kt-info-rgb));
}

.text-warning {
  color: rgb(var(--kt-warning-rgb));
}

.text-danger {
  color: rgb(var(--kt-danger-rgb));
}

.text-muted {
  color: rgb(var(--kt-muted-foreground-rgb));
}

.text-muted-foreground {
  color: rgb(var(--kt-muted-foreground-rgb));
}

.text-secondary-foreground {
  color: rgb(var(--kt-secondary-foreground-rgb));
}

.text-foreground {
  color: rgb(var(--kt-foreground-rgb));
}

.bg-primary {
  background-color: rgb(var(--kt-primary-rgb));
}

.bg-secondary {
  background-color: rgb(var(--kt-secondary-rgb));
}

.bg-success {
  background-color: rgb(var(--kt-success-rgb));
}

.bg-info {
  background-color: rgb(var(--kt-info-rgb));
}

.bg-warning {
  background-color: rgb(var(--kt-warning-rgb));
}

.bg-danger {
  background-color: rgb(var(--kt-danger-rgb));
}

.bg-muted {
  background-color: rgb(var(--kt-muted-rgb));
}

.bg-background {
  background-color: rgb(var(--kt-background-rgb));
}

/* Responsive Utilities */
@media (min-width: 640px) {
  .sm\:me-0 {
    margin-inline-end: 0;
  }
}

@media (min-width: 768px) {
  .md\:block {
    display: block;
  }

  .md\:inline {
    display: inline;
  }

  .md\:hidden {
    display: none;
  }
}

@media (min-width: 1024px) {
  .lg\:ps-0 {
    padding-inline-start: 0;
  }

  .lg\:gap-4 {
    gap: 1rem;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:w-\[58px\] {
    width: 58px;
  }

  .lg\:overflow-hidden {
    overflow: hidden;
  }
}

/* Dark mode utilities */
.dark\:hidden {
  display: none;
}

[data-kt-theme-mode="dark"] .dark\:hidden {
  display: none;
}

[data-kt-theme-mode="dark"] .dark\:block {
  display: block;
}

.light\:hidden {
  display: none;
}

[data-kt-theme-mode="light"] .light\:hidden {
  display: none;
}

/* Flexbox utilities */
.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-col {
  flex-direction: column;
}

.grow {
  flex-grow: 1;
}

.shrink-0 {
  flex-shrink: 0;
}

/* Grid utilities */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Spacing utilities */
.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-6 {
  padding: 1.5rem;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.m-0 {
  margin: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.me-1 {
  margin-inline-end: 0.25rem;
}

.me-2 {
  margin-inline-end: 0.5rem;
}

.ms-2 {
  margin-inline-start: 0.5rem;
}

/* Size utilities */
.w-full {
  width: 100%;
}

.w-32 {
  width: 8rem;
}

.w-48 {
  width: 12rem;
}

.h-full {
  height: 100%;
}

.h-auto {
  height: auto;
}

.size-6 {
  width: 1.5rem;
  height: 1.5rem;
}

.size-8 {
  width: 2rem;
  height: 2rem;
}

.size-9 {
  width: 2.25rem;
  height: 2.25rem;
}

.size-10 {
  width: 2.5rem;
  height: 2.5rem;
}

.size-11 {
  width: 2.75rem;
  height: 2.75rem;
}

.size-12 {
  width: 3rem;
  height: 3rem;
}

.min-w-125px {
  min-width: 125px;
}

.min-w-100px {
  min-width: 100px;
}

.max-w-\[370px\] {
  max-width: 370px;
}

.max-w-\[450px\] {
  max-width: 450px;
}

.max-w-\[650px\] {
  max-width: 650px;
}

/* Position utilities */
.fixed {
  position: fixed;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.z-10 {
  z-index: 10;
}

.z-50 {
  z-index: 50;
}

/* Border utilities */
.border {
  border-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.border-border {
  border-color: rgb(var(--kt-border-rgb));
}

.border-b-border {
  border-bottom-color: rgb(var(--kt-border-rgb));
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-full {
  border-radius: 9999px;
}

/* Text utilities */
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-end {
  text-align: end;
}

.uppercase {
  text-transform: uppercase;
}

.leading-none {
  line-height: 1;
}

/* Display utilities */
.block {
  display: block;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.inline-flex {
  display: inline-flex;
}

.hidden {
  display: none;
}

/* Overflow utilities */
.overflow-hidden {
  overflow: hidden;
}

.overflow-x-auto {
  overflow-x: auto;
}

/* Transition utilities */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

/* Shadow utilities */
.shadow-none {
  box-shadow: none;
}

/* Cursor utilities */
.cursor-pointer {
  cursor: pointer;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

/* Opacity utilities */
.opacity-50 {
  opacity: 0.5;
}

.opacity-70 {
  opacity: 0.7;
}

/* Transform utilities */
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-full {
  --tw-translate-x: 100%;
}

.-translate-x-full {
  --tw-translate-x: -100%;
}

.translate-y-1\/2 {
  --tw-translate-y: 50%;
}

.-translate-y-1\/2 {
  --tw-translate-y: -50%;
}

/* Antialiased */
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}