:root {
  --wheelsys-border-color: rgba(216, 218, 220, 1);
  --wheelsys-primary-color: rgba(239, 52, 63, 1);
  --wheelsys-bagde-bg-color: rgba(225, 229, 233, 1);

  --wheelsys-bg-color: rgba(252, 252, 252, 1);
}

/* Colors */

.text-gray {
  color: rgba(101, 106, 110, 1);
}

.text-white {
  color: white;
}

.bg-white {
  background-color: white;
}

.bg-background {
  background-color: var(--wheelsys-bg-color);
}

.bg-primary {
  background-color: var(--wheelsys-primary-color);
}

.border-gray {
  border-color: rgba(242, 242, 242, 1) !important;
}

.border {
  border: 1px solid;
}

/* Shadows */

.shadow-sm {
  box-shadow: 0px 2px 50px 0px rgba(25, 33, 61, 0.02);
}

/* Text size */

.text-base {
  font-size: 1rem;
  line-height: 1.25rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.25rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.5rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 1.75rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1.25rem;
}

.leading-lg {
  line-height: 1.25rem;
}

.leading-xl {
  line-height: 1.75rem;
}

.leading-none {
  line-height: 1;
}

.rounded-14 {
  border-radius: 0.875rem;
}

.rounded-32 {
  border-radius: 2rem;
}

.rounded-full {
  border-radius: 999px;
}

.bg-badge {
  background-color: var(--wheelsys-bagde-bg-color);
}

/* Font weight */
.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

/* Position */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.hidden {
  display: none;
}

/* Layout */
.block {
  display: block;
}

.grid {
  display: grid;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.self-start {
  align-self: start;
}

.flex {
  display: flex !important;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-1-5 {
  gap: 0.375rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.box-sizing {
  box-sizing: border-box;
}

.gap-x-1 {
  column-gap: 0.25rem;
}

.gap-x-2 {
  column-gap: 0.5rem;
}

.gap-x-3 {
  column-gap: 0.75rem;
}

.gap-x-4 {
  column-gap: 1rem;
}

.gap-x-6 {
  column-gap: 1.5rem;
}

.gap-x-8 {
  column-gap: 2rem;
}

.gap-x-10 {
  column-gap: 2.5rem;
}

.gap-y-1 {
  row-gap: 0.25rem;
}

.gap-y-2 {
  row-gap: 0.5rem;
}

.gap-y-3 {
  row-gap: 0.75rem;
}

.gap-y-4 {
  row-gap: 1rem;
}

.gap-y-6 {
  row-gap: 1.5rem;
}

.gap-y-8 {
  row-gap: 2rem;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: end;
}

.items-baseline {
  align-items: baseline;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}


/* Overflow */
.overflow-hidden {
  overflow: hidden;
}

/* Padding */
.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-7 {
  padding: 1.75rem;
}

.p-8 {
  padding: 2rem;
}

.px-2 {
  padding-inline: 0.5rem;
}

.px-3 {
  padding-inline: 0.75rem;
}

.px-4 {
  padding-inline: 1rem;
}

.px-6 {
  padding-inline: 1.5rem;
}

.px-7 {
  padding-inline: 1.75rem;
}

.px-8 {
  padding-inline: 2rem;
}

.py-2 {
  padding-block: 0.5rem;
}

.py-3 {
  padding-block: 0.75rem;
}

.py-4 {
  padding-block: 1rem;
}

.py-5 {
  padding-block: 1.25rem;
}

.py-6 {
  padding-block: 1.5rem;
}

.py-7 {
  padding-block: 1.75rem;
}

.py-8 {
  padding-block: 2rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pb-7 {
  padding-bottom: 1.75rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

/* Margin */
.m-0 {
  margin: 0 !important;
}

.m-2 {
  margin: 0.5rem;
}

.m-3 {
  margin: 0.75rem;
}

.m-4 {
  margin: 1rem;
}

.m-6 {
  margin: 1.5rem;
}

.m-8 {
  margin: 2rem;
}

.mx-2 {
  margin-inline: 0.5rem;
}

.mx-3 {
  margin-inline: 0.75rem;
}

.mx-4 {
  margin-inline: 1rem;
}

.mx-6 {
  margin-inline: 1.5rem;
}

.mx-8 {
  margin-inline: 2rem;
}

.my-2 {
  margin-block: 0.5rem;
}

.my-3 {
  margin-block: 0.75rem;
}

.my-4 {
  margin-block: 1rem;
}

.my-6 {
  margin-block: 1.5rem;
}

.my-8 {
  margin-block: 2rem;
}

.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;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

/* Width */
.w-fit {
  width: fit-content;
}

.w-2 {
  width: 0.5rem;
}

.w-4 {
  width: 1rem;
}

.w-6 {
  width: 1.5rem;
}

.w-full {
  width: 100%;
}

/* height */
.h-fit {
  height: fit-content;
}

.h-full {
  height: 100%;
}

ul.ul-formated {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cursor-pointer {
  cursor: pointer;
}

.select-none {
  user-select: none;
}

/* Toast Notifications - Global Styles */
.wheelsys-toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  pointer-events: none;
}

.wheelsys-toast {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.3s ease;
  pointer-events: auto;
  min-width: 300px;
}

.wheelsys-toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.toast-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.wheelsys-toast-success .toast-icon {
  background: #d4edda;
  color: #155724;
}

.wheelsys-toast-error .toast-icon {
  background: #f8d7da;
  color: #721c24;
}

.wheelsys-toast-warning .toast-icon {
  background: #fff3cd;
  color: #856404;
}

.wheelsys-toast-info .toast-icon {
  background: #d1ecf1;
  color: #0c5460;
}

.toast-icon::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}

.wheelsys-toast-success .toast-icon::before {
  background: #28a745;
}

.wheelsys-toast-error .toast-icon::before {
  background: #dc3545;
}

.wheelsys-toast-warning .toast-icon::before {
  background: #ffc107;
}

.wheelsys-toast-info .toast-icon::before {
  background: #17a2b8;
}

.toast-message {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

.wheelsys-toast-success {
  border-left: 4px solid #28a745;
}

.wheelsys-toast-error {
  border-left: 4px solid #dc3545;
}

.wheelsys-toast-warning {
  border-left: 4px solid #ffc107;
}

.wheelsys-toast-info {
  border-left: 4px solid #17a2b8;
}

.toast-close {
  background: none;
  border: none;
  font-size: 20px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.toast-close:hover {
  color: #333;
}

@media (max-width: 768px) {
  .wheelsys-toast-container {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }

  .wheelsys-toast {
    min-width: auto;
  }
}