/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
/* Base styles */
:root {
  --primary-50:            #f0f5ff;
  --primary-100:           #e6edff;
  --primary-200:           #bfd4ff;
  --primary-500:           #1a56ff;
  --primary-600:           #0037db;
  --primary-700:           #002db3;
  --primary-800:           #002080;
  --primary-900:           #001452;
  --gray-50:               #f9fafb;
  --gray-100:              #f3f4f6;
  --gray-150:              #F4F4F5;
  --gray-200:              #e5e7eb;
  --gray-250:              #F5F5F5;
  --gray-300:              #d1d5db;
  --gray-400:              #D9D9D9;
  --gray-500:              #6b7280;
  --gray-600:              #4B5563;
  --gray-700:              #374151;
  --gray-900:              #111827;
  --white:                 #ffffff;
  --green-100:             #def7ec;
  --green-300:             #7BD098;
  --green-700:             #166534;
  --green-800:             #03543f;
  --red-100:               #fee2e2;
  --red-600:               #DC2626;
  --red-700:               #E20E0E;
  --red-800:               #991b1b;
  --violet-100:            #ede9fe;
  --violet-600:            #7c3aed;
  --violet-700:            #7e22ce;
  --violet-800:            #6b21a8;
  --warning-100:           #ffffcc;
  --warning-700:           #ffeb3b;
  --success-700:           #4caf50;

  --sidebarwidth:           256px;
}
/* typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 23px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 18px;
}
/* number input snipper */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  -moz-appearance: textfield;
}
input[type="date"] {
  -webkit-appearance: none; /* Removes iOS default styling */
  appearance: none; /* Removes default styling for all browsers */
  background-color: var(--white) !important; /* Ensures background stays white */
  width: 100%; /* Adjust width as needed */
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  color: var(--gray-900);
  background-color: var(--gray-50);
  font-size: 16px;
}
.alert {
  padding: .5rem 1.5rem ;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.alert-success,
.alert-notice {
  background-color: var(--green-100);
  color: var(--green-800);
}
.alert-alert {
  background-color: var(--red-100);
  color: var(--red-800);
}
.alert-error {
  background-color: var(--warning-100);
  color: var(--gray-900);
}
.error-container {
  padding: 8px;
  background: var(--red-100);
  color: var(--red-800);
  box-sizing: border-box;
}
.box-border {
  box-sizing: border-box;
}
.list-inside {
  list-style-position: inside;
}
/* Layout */
.layout {
  min-height: calc(100vh - 3.5rem);
  display: flex;
}
/* Grid */
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-80-fr {
  grid-template-columns: 80px 1fr;
}
.place-items-center {
  place-items: center;
}
@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* Flex utilities */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: start;
}
.items-end {
  align-items: end;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-grow {
  flex-grow: 1;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-evenly {
  justify-content: space-evenly;
}
.justify-end {
  justify-content: flex-end;
}
.gap-0 {
  gap: 0;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.space-y-2 > * + * {
  margin-top: .5rem;
}
.space-y-4 > * + * {
  margin-top: 1rem;
}
.space-y-6 > * + * {
  margin-top: 1.5rem;
}
.space-y-8 > * + * {
  margin-top: 2rem;
}
.text-nowrap {
  white-space: nowrap;
}
/* Sidebar */
.sidebar {
  width: var(--sidebarwidth);
  background-color: var(--primary-900);
  padding: 0.5rem;
  display: none;
  position: fixed;
  height: 100vh;
}
@media (min-width: 768px) {
  .sidebar {
    display: block;
  }
}
/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 1.25rem;
}
.logo-icon {
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.logo-icon img {
  max-height: 2.5rem;
  width: auto;
  object-fit: contain;
}
.logo-text {
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--white);
}
/* .logo-text-bike {
  color: var(--primary-500);
} */
/* Navigation */
.nav {
  margin-top: 2rem;
}
.opacity-0 {
  opacity: 0;
}
.nav-link {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-radius: 0.375rem;
  margin-bottom: 0.25rem;
  transition: background-color 0.2s;
}
.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.nav-link.active {
  background-color: var(--primary-800);
  color: var(--white);
}
.nav-link svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.75rem;
}
/* Mobile header */
.mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-900);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}
@media (min-width: 768px) {
  .mobile-header {
    display: none;
  }
}
/* Main content */
.main-content {
  flex: 1;
  padding: 1rem;
  width: 100%;
  touch-action: manipulation;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
}
.container-bv {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.main-content.signed-in {
  margin-left: var(--sidebarwidth);
}
/* Cards */
.card {
  background-color: var(--white);
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  transition: .3s ease-in-out;
}
.bike-card {
  width: 23.5%;
  background-color: var(--gray-400);
  padding: 1rem;
  border: 1px solid transparent;;
}
.bike-card.selected {
  border-color: var(--primary-900);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.hidden {
  display: none !important;
}
@media (min-width: 768px) {
  .main-content {
    margin-top: 0;
    padding: 2rem;
  }
  .hover\:bg-gray-100:hover {
    background: var(--gray-100);
  }
  .md\:block {
    display: block;
  }
}
details {
  overflow: hidden;
}
summary {
  background: var(--gray-250);
  padding: 0.6rem;
  font-size: 16px;
  cursor: pointer;
  transition: .3s ease-in-out;
}
/* Forms */
.form-group {
  margin-bottom: 1rem;
}
.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.2rem;
}
.form-input,
.form-select,
.form-textarea {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--gray-900);
  transition: border-color 0.15s ease-in-out;
}
.form-input:focus,
.form-select:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(26, 86, 255, 0.1);
}
.form-textarea {
  min-height: 50px;
  resize: vertical;
}
.bordered-field .form-input,
.bordered-field .form-select,
.bordered-field .form-textarea {
  padding: 0.6rem;
  background: var(--gray-250);
  border-color: var(--gray-200);
  border-radius: 0.325rem;
  border-bottom-color: var(--gray-200);
  border-width: 1px;
  height: auto;
}
.bordered-field .form-input:focus,
.bordered-field .form-select select:focus,
.bordered-field .form-select:focus,
.bordered-field .form-textarea:focus {
  border-color: rgba(37, 99, 235, 0.7);
}
.form-checkbox-filled {
  appearance: none;
  -webkit-appearance: none;
  width: 0.85rem;
  height: 0.85rem;
  border: 1px solid var(--primary-600);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  background-color: var(--white);
  transition: background-color 0.2s, border-color 0.2s;
}
.form-checkbox-filled:checked {
  background-color: var(--primary-600);
  border-color: var(--primary-600);
}
.form-select {
  position: relative;
  display: inline-block;
  min-width: 200px;
  padding: 0;
}
.form-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding: 0.7rem 0.75rem;
  border: 0;
  background-color: transparent;
  width: 100%;
}
.bordered-field .form-select select {
  padding: 0.1rem;
}
.form-select::after {
  content: '▾';
  font-size: 40px;
  line-height: 0;
  color: var(--gray-400);
  position: absolute;
  top: 40%;
  right: 5px;
  pointer-events: none;
}
.bordered-field .form-select select:focus,
.form-select select:focus {
  outline: none;
  border-color: transparent;
  box-shadow: none;
}
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  border:  1px solid transparent;
  transition: .3s ease-in-out;
}
.btn:hover {
  opacity: 0.8;
}
.btn-sm {
  padding: 0.225rem 0.5rem;
  font-size: smaller;
}
.btn svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
}
.btn-primary {
  background-color: var(--primary-600);
  color: var(--white);
}
.btn-primary:hover {
  background-color: var(--primary-700);
}
.btn-secondary {
  background-color: var(--white);
  color: var(--gray-700);
  border-color:  var(--gray-300);
}
.btn-secondary:hover {
  background-color: var(--gray-50);
}
.btn-danger {
  background-color: var(--red-100);
  color: var(--red-800);
}
.btn-danger:hover {
  background-color: var(--red-800);
  color: var(--white);
}
.btn-link {
  background: transparent;
  font-size: 16px;
  color: var(--primary-600);
  text-decoration: none;
  transition: .3s ease-in-out;
}
.btn-link:hover {
  color: var(--primary-800);
}
.underlined {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link-hovered {
  color: var(--primary-600);
  font-weight: 600;
  text-decoration: none;
  padding: .4rem 1rem;
  border-radius: 5px;
  transition: .3s ease-in-out;
}
.link-hovered:hover {
  background: var(--gray-100);
}
.no-btn {
  border: 0;
  background: transparent;
}
.trash-icon {
  width: 16px;
  height: 16px;
  cursor: pointer;
  color: var(--gray-500);
}
.trash-icon svg {
  width: 16px;
  height: 16px;
}
.comments-list li {
  padding-bottom: .5rem;
  margin-bottom: .5rem;
  border-bottom: 1px solid var(--gray-300);
}
.comments-list li:last-child {
  border: 0;
  padding: 0;
  margin: 0;
}
/* Tables */
.table-container {
  overflow-x: auto;
}
.table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}
.table th,
.table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}
.table tr:last-child td {
  border: 0;
}
.table th {
  background-color: var(--gray-50);
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.875rem;
}
.table td {
  font-size: 0.875rem;
  color: var(--gray-900);
}
.table tbody tr:hover {
  background-color: var(--gray-50);
}
.table .actions {
  text-align: right;
}
.table thead th a {
  text-decoration: none !important;
  color: inherit !important;
}
/* Status badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-sm {
  padding: 0.25rem 0.45rem;
  font-size: 0.6rem;
}
.badge-success {
  background-color: var(--green-100);
  color: var(--green-800);
}
.badge-primary {
  background-color: var(--primary-100);
  color: var(--primary-700);
}
.badge-primary-700 {
  background-color: var(--primary-700);
  color: var(--white);
}
.badge-secondary { 
  background-color: var(--violet-100);
  color: var(--violet-800);
}
.badge-neutral {
  background-color: var(--gray-100);
  color: var(--gray-700);
}
.badge-danger {
  background-color: var(--gray-300);
  color: var(--red-600);
}
.badge-complete {
  background-color: var(--green-300);
  color: var(--green-700);
}

/* Utilities */
/* height */
.h-5 {
  width: 1.25rem;
}
.h-8 {
  height: 2rem;
}
.h-100-3rem {
  height: calc(100% - 4.3rem);
}
.min-h-full {
  min-height: 100%;
}
.min-h-33 {
  min-height: 33rem;
}
/* width */
.w-full {
  width: 100%;
}
.w-20 {
  width: 20px;
}
.max-w-md {
  max-width: 28rem;
}
.w-max {
  width: max-content;
}
.w-1\/4 {
  width: 25%;
}
.w-3\/4 {
  width: 75%;
}
.w-8 {
  width: 2rem;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-6xl {
  max-width: 76rem;
}
.list-none {
  list-style: none;
}
/* padding */
.p-0 {
  padding: 0;
}
.p-2 {
  padding: .5rem;
}
.p-3 {
  padding: .75rem;
}
.p-4 {
  padding: 1rem;
}
.p-8 {
  padding: 2rem;
}
.p-9 {
  padding: 3rem;
}
.pt-3 {
  padding-top: 1.5rem;
}
.py-3 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.px-0 {
  padding-left: 0;
  padding-right: 0;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-3 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.pb-2 {
  padding-bottom: 1rem;
}
/* margin */
.m-0 {
  margin: 0 !important;
}
.ml-10 {
  margin-left: 10px;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.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;
}
.my-2 {
  margin-top: 0.5rem; 
  margin-bottom: 0.5rem; 
}
.my-4 {
  margin-top: 1rem; 
  margin-bottom: 1rem; 
}
.my-6 {
  margin-top: 1.5rem; 
  margin-bottom: 1.5rem; 
}
.mx-auto {
  margin: 0 auto;
}
/* text style */
.text-xs {
  font-size: 0.75rem;
}
.text-sm {
  font-size: 0.875rem;
}
.leading {
  line-height: normal;
}
.white-space {
  white-space: normal;
}
.leading-1 {
  line-height: 1;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-2xl {
  font-size: 1.5rem;
}
.text-primary svg,
.text-primary {
  color: var(--primary-600);
}
.text-primary-800 svg,
.text-primary-800 {
  color: var(--primary-800);
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.text-gray-500 {
  color: var(--gray-500);
}
.text-gray-700 {
  color: var(--gray-700);
}
.text-gray-900 {
  color: var(--gray-900);
}
.text-primary svg,
.text-primary {
  color: var(--primary-600);
}
.text-danger svg,
.text-danger {
  color: var(--red-800);
}
.text-gray600 {
  color: var(--gray-600);
}
.text-gray svg,
.text-gray  {
  color: var(--gray-700);
}
.text-white svg,
.text-white  {
  color: var(--white);
}
.text-red-700 svg,
.text-red-700 {
  color: var(--red-700);
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-justify {
  text-align: justify;
}
/* background */
.bg-white {
  background: var(--white);
}
.bg-gray-50 {
  background: var(--gray-50);
}
.bg-gray-100 {
  background: var(--gray-100);
}
.bg-gray-400 {
  background: var(--gray-400);
}
.bg-transparent {
  background: transparent;
}
.border-b {
  border-bottom: 1px solid #ddd;
}
.border-t {
  border-top: 1px solid transparent;
}
.border-none {
  border: 0;
}
.border-primary-800 {
  border-color: var(--primary-800);
}
.shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
.shadow-none {
  box-shadow: none;
}
.rounded {
  border-radius: 0.5rem;
}
.rounded-xl {
  border-radius: 1rem;
}
.rounded-t {
  border-radius: 0.5rem 0.5rem 0 0;
}
.rounded-t-md {
  border-radius: 0.375rem 0.375rem 0 0;
}
.rounded-b-md {
  border-radius: 0 0 0.375rem 0.375rem;
}
.stripped-table .item-table:nth-child(even) {
  background-color: var(--gray-50);
}
.search-box {
  position: relative;
}
.search-box input {
  padding: 0.5rem;
  width: 100%;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  border: 1px solid var(--gray-200);
  height: 40px;
}
.search-box input.name-search {
  padding-left: 40px;
}
.search-box .field-icon { 
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 20px;
  color: var(--gray-500);
}
.search-box input::placeholder {
  color: #aaa;
}
.field {
  position: relative;
}
.field input {
  padding: 0.5rem;
  width: 100%;
  border: none;
  font-size: 0.875rem;
  border: 1px solid var(--gray-200);
  background: transparent;
  padding: 0.5rem 0.5rem 0.5rem 2.5rem;
  height: 38px;
}
.field .icon {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
}
.field .pass-eye {
  position: absolute;
  width: 18px;
  height: 18px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.field .pass-eye svg {
  width: 100%;
  cursor: pointer;
}
#mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin: 0;
  background-color: var(--primary-900);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20%);
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}
#mobile-nav .nav-link {
  color: var(--gray-100);
}
#mobile-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  padding: 1rem 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
/* Modal Styling */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  overflow: auto;
  padding: 10px;
}
.modal-content {
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 890px;
  max-height: 85vh;
  overflow-y: auto;
}
.modal-sm {
  max-width: 600px ;
}
.modal-xs {
  max-width: 450px;
}
.img-modal {
  width: auto;
  height: auto;
  box-sizing: content-box;
  min-width: 14rem;
  min-height: 5rem;
}
.modal img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.modal h2 {
  margin-top: 0;
}
/* Close Button */
.modal-close {
  font-size: 24px;
  line-height: 12px;
  cursor: pointer;
}
.pagination {
  display: flex;
  width: max-content;
  overflow: hidden;
  box-sizing: border-box;
  margin: 20px auto;
  border-radius: 4px;
}
.pagination .current,
.pagination a {
  padding: 6px 15px;
  border: 1px solid var(--gray-200);
  transition: .3s ease-in-out;
  box-sizing: border-box;
  color: var(--gray-900);
  text-decoration: none;
  display: inline-flex;
  line-height: normal;
  align-items: center;
  justify-content: center;
}
.pagination a:hover {
  background: var(--primary-100);
}
.pagination a.next,
.pagination a.prev,
.pagination a.first,
.pagination a.last {
  padding: 6px 10px;
}
.pagination .current {
  background-color: var(--primary-600);
  color: white;
  border: 1px solid var(--primary-600);
}
.light-shadow {
  box-shadow: 0 0px 1px 0 rgba(0, 0, 0, 0.1), 0 0px 1px -1px rgba(0, 0, 0, 0.1);
}
/* Tab Panel */
.tab-panel {
  display: flex;
  padding: 5px;
  border-radius: 5px;
  background:var(--gray-150);
  gap: 5px;
}
.tab-btn {
  flex: 1;
  background: transparent;
  padding: 10px 70px;
  text-align: center;
  color: var(--gray-500);
  border: none;
  cursor: pointer;
  transition: .3s ease-in-out;
}
.tab-btn:hover,
.tab-btn.active {
  background-color: var(--primary-600);
  color: var(--white);
  border-radius: 5px;
}
.tabs-container {
  display: none;
}
.tabs-container.active {
  display: flex;
  flex-direction: column;
}
.images {
  display: inline-block;
}
@media (max-width: 767px) {
  .tab-panel {
    flex-flow: column;
  }
  .xs-flex-col {
    flex-flow: column;
  }
  .sm\:flex {
    display: flex;
  }
  .sm\:text-sm {
    font-size: 14px;
  }
  .sm\:p-2 {
    padding: .5rem;
  }
  .sm\:p-4 {
    padding: 1rem;
  }
  .sm\:flex-col {
    flex-flow: column;
  }
  .sm\:items-start {
    align-items: start;
  }
  .sm\:items-center {
    align-items: center;
  }
  .sm\:mb-4 {
    margin-bottom: 1rem;
  }
  .sm\:gap-2 {
    gap: .5rem;
  }
  .sm\:w-full {
    width: 100%;
  }
  .main-content.signed-in {
    margin-left: 0;
    margin-top: 4rem;
  }
  .sm\:fs-28 {
    font-size: 28px;
  }
  .sm\:hidden {
    display: none;
  }
  .sm\:block {
    display: block;
  }
  .sm\:text-left {
    text-align: left;
  }
}
.text-decoration-none {
  text-decoration: none;
}
.tooltip-container {
  position: relative;
}
.tooltip-text {
  display: none;
  background-color: var(--gray-900);
  color: var(--white);
  text-align: center;
  padding: 2px 8px;
  border-radius: 8px;
  position: absolute;
  font-size: 12px;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s ease-in-out;
}
.tooltip-container:hover .tooltip-text {
  display: inline-block;
}
.cursor-pointer {
  cursor: pointer;
}
/* toggle slider */
.toggle-slide {
  -webkit-appearance: none;
  appearance: none;
  width: 40px;
  height: 20px;
  background-color: var(--gray-300);
  border-radius: 50px;
  outline: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.toggle-slide:disabled + .toggle-label { 
  cursor: not-allowed;
  opacity: .8;
}
.toggle-slide:checked {
  background-color: var(--success-700);
}
.toggle-slide:focus {
  outline: none;
}
.toggle-slide + .toggle-label {
  display: inline-block;
  width: 40px;
  height: 20px;
  background-color: var(--gray-300);
  border-radius: 50px;
  position: relative;
  transition: background-color 0.3s ease;
}
.toggle-slide:checked + .toggle-label {
  background-color: var(--success-700);
}
.toggle-label:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--white);
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
}
.toggle-slide:checked + .toggle-label:before {
  transform: translateX(20px);
}
.relative {
  position: relative;
}
.adjustable-trash {
  position: absolute;
  top: 8px;
  right: 6px; 
}
.form-loader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(30, 30, 30, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.spinner {
  width: 48px; height: 48px;
  border: 6px solid #ccc;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

