﻿:root {
    --border: #0000001a;
    --bs-primary: #0E393A;
    --primary: #0E393A;
    --bs-secondary: #015C5E;
    --secondary: #015C5E;
    --border: #e5e7eb;
    --borderhistoryline: #0000001a;
    --bg: #ffffff;
    --muted: #6b7280;
    --accent: #f3f4f6;
    --teal: #0d9488;
    --teal-dark: #0f766e;
    --green-bg: #ecfdf5;
    --green-text: #047857;
    --color-amber-50: oklch(98.7% .022 95.277);
    --color-amber-100: oklch(96.2% .059 95.617);
    --color-amber-200: oklch(92.4% .12 95.746);
    --color-amber-500: oklch(76.9% .188 70.08);
    --color-amber-600: oklch(66.6% .179 58.318);
    --color-amber-700: oklch(55.5% .163 48.998);
    --color-amber-800: oklch(47.3% .137 46.201);
    --color-amber-900: oklch(41.4% .112 45.904);
    --color-orange-50: oklch(98% .016 73.684);
    --color-orange-100: oklch(95.4% .038 75.164);
    --color-orange-200: oklch(90.1% .076 70.697);
    --color-orange-500: oklch(70.5% .213 47.604);
    --color-orange-600: oklch(64.6% .222 41.116);
    --color-orange-700: oklch(55.3% .195 38.402);
    --color-purple-100: oklch(94.6% .033 307.174);
    --color-emerald-100: oklch(95% .052 163.051);
    --color-emerald-600: oklch(59.6% .145 163.225);
    --color-blue-100: oklch(93.2% .032 255.585);
    --color-blue-500: oklch(62.3% .214 259.815);
    --color-teal-50: oklch(98.4% .014 180.72);
    --color-teal-100: oklch(95.3% .051 180.801);
    --color-teal-200: oklch(91% .096 180.426);
    --color-teal-400: oklch(77.7% .152 181.912);
    --color-teal-500: oklch(70.4% .14 182.503);
    --color-teal-600: oklch(60% .118 184.704);
    --color-teal-700: oklch(51.1% .096 186.391);
    --color-teal-800: oklch(43.7% .078 188.216);
    --color-gray-50: oklch(98.5% .002 247.839);
    --color-gray-100: oklch(96.7% .003 264.542);
    --color-gray-200: oklch(92.8% .006 264.531);
    --color-gray-300: oklch(87.2% .01 258.338);
    --color-gray-400: oklch(70.7% .022 261.325);
    --color-gray-500: oklch(55.1% .027 264.364);
    --color-gray-600: oklch(44.6% .03 256.802);
    --color-gray-700: oklch(37.3% .034 259.733);
    --color-gray-900: oklch(21% .034 264.665);
    --tracking-wider: .05em;
    --color-slate-50: oklch(98.4% .003 247.858);
    --color-slate-100: oklch(96.8% .007 247.896);
    --color-slate-200: oklch(92.9% .013 255.508);
    --color-slate-300: oklch(86.9% .022 252.894);
    --color-slate-500: oklch(55.4% .046 257.417);
    --color-slate-600: oklch(44.6% .043 257.281);
    --color-slate-900: oklch(20.8% .042 265.755);
    --color-blue-50: oklch(97% .014 254.604);
    --color-blue-500: oklch(62.3% .214 259.815);
    --color-blue-600: oklch(54.6% .245 262.881);
    --color-blue-700: oklch(48.8% .243 264.376);
    --card-foreground: oklch(14.5% 0 0);
    --tw-ease: initial;
    --default-transition-timing-function: cubic-bezier(.4,0,.2,1);
    --tw-duration: initial;
    --default-transition-duration: .15s;
}


body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f9fafb;
}

html {
    scrollbar-width: thin; /* Opciones: auto, thin, none */
    scrollbar-color: var(--primary) #f1f1f1; /* color-del-tirador color-de-la-pista */
}

/* HEADER */

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.header-container {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: #0d9488;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-title {
    font-size: 20px;
    font-weight: bold;
    color: #111827;
}

.logo-subtitle {
    font-size: 12px;
    color: #6b7280;
}

/* CLOCKS */

.clock-container {
    display: flex;
    gap: 24px;
}

.clock-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.clock-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #4b5563;
}

.clock-time {
    font-family: monospace;
    font-size: 22px;
    font-weight: 600;
    background: #0d9488;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
}

.clock-date {
    font-size: 11px;
    color: #6b7280;
}

/* BUTTONS */

.header-buttons {
    display: flex;
    gap: 8px;
}

.btn-primary {
    padding: 8px 16px;
    background: #06b6d4;
    border: none;
    color: white;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

    .btn-primary:hover {
        background: #0891b2;
    }





/* NAVBAR */

.navbar-public {
    height: 3px;
    background: var(--primary);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.navbar {
    background: var(--primary);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.navbar-container {
    /*max-width: 1200px;
    margin: auto;
    padding: 0 20px;*/
    justify-items:center;
}


.navbar ul li.active > button {
    background-color: white;
    color: var(--primary);
    top: 1px;
    /* border-radius: 0px;
    border-bottom-color: #20d5c7;
    border-bottom-style: solid;
    border-top-color: #20d5c7;
    border-top-style: solid;*/
}
    .navbar ul li.active > button > svg {
        fill: var(--primary);
    } 

/* MENU */

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 64px;
    align-items: center;
    gap: 4px;
}

.menu-item {
    position: relative;
}

/* BOTONES */

.menu-btn {
    /*background: transparent;
    border: none;
    color: white;
    padding: 10px 16px;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 500;
    transition: background .3s;*/


    border: none;
    background: var(--primary);
    color: white;
    font-weight: bold;
    border-radius: 10px 10px 0px 0px;
    cursor: pointer; 
}

    .menu-btn:hover {
        background: var(--secondary);
        border-bottom-color: orange;
    } 

/* SUBMENU */
 

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    padding:inherit;
    display: none;
    min-width: 220px;
}

/* mostrar submenu */

.menu-item:hover .submenu {
    display: block; 
}

/* items submenu */

.submenu-item {
    display: block;
    width: 100%;
    background: none;
    border: none;
    padding: 10px;
    text-align: left;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
    color: #444;
}

    .submenu-item:hover {
        background: #e6f7f6;
        color: #00786f;
    }









.flex {
    display: flex;
}
.flex-1 {
    flex: 1;
}

.flex-col {
    flex-direction: column;
}
.flex-shrink-0, .shrink-0 {
    flex-shrink: 0;
}

.flex-wrap {
    flex-wrap: wrap;
}
.inline-flex {
    display: inline-flex;
}

.grid {
    display: grid;
}
.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.items-start {
    align-items: flex-start;
}
.items-end {
    align-items: flex-end;
}

.items-center {
    align-items: center;
}
.justify-between {
    justify-content: space-between;
}
.justify-end {
    justify-content: flex-end;
}

.align-content-end{
    align-content:end;
}

/*Padding*/
.pt-1 {
    padding-top: 4px;
}
.pt-2 {
    padding-top: 8px;
}
.pt-3 {
    padding-top: 12px;
}
.pt-4 {
    padding-top: 16px;
}
.pt-5 {
    padding-top: 20px;
}
.pt-6 {
    padding-top: 24px;
}
.pt-7 {
    padding-top: 28px;
}
.pt-8 {
    padding-top: 32px;
}
.p-2 {
    padding: 8px;
}
.p-3 {
    padding: 12px;
}
.p-4 {
    padding: 16px;
}
.p-5 {
    padding: 20px;
}
.p-6 {
    padding: 24px;
}
.p-7 {
    padding: 28px;
}
.p-8 {
    padding: 32px;
}
.py-1-5 {
    padding-block: 6px;
}
.py-1 {
    padding-block: 4px;
}
.py-2 {
    padding-block: 8px;
}
.py-3 {
    padding-block: 12px;
}
.py-4 {
    padding-block: 16px;
}
.py-5 {
    padding-block: 20px;
}
.py-6 {
    padding-block: 24px;
}
.py-7 {
    padding-block: 28px;
}
.py-8 {
    padding-block: 32px;
}
.py-9 {
    padding-block: 36px;
}
.py-10 {
    padding-block: 40px;
}
.py-16 {
    padding-block: 64px;
}
.px-1 {
    padding-inline: 4px;
}
.px-2 {
    padding-inline: 8px;
}
.px-3 {
    padding-inline: 12px;
}
.px-4 {
    padding-inline: 16px;
}
.px-5 {
    padding-inline: 20px;
}
.px-6 {
    padding-inline: 24px;
}
.px-7 {
    padding-inline: 28px;
}
.px-8 {
    padding-inline: 32px;
}
.px-9 {
    padding-inline: 36px;
}
.px-10 {
    padding-inline: 40px;
}

.pl-10 {
    padding-left:40px;
}
.pl-11 {
    padding-left: 44px!important;
}

/*Margin*/
.mb-1 {
    margin-bottom: 4px;
}
.mb-2 {
    margin-bottom: 8px;
}
.mb-3 {
    margin-bottom: 12px;
}
.mb-4 {
    margin-bottom: 16px;
}
.mb-5 {
    margin-bottom: 20px;
}
.mb-6 {
    margin-bottom: 24px;
}
.mb-7 {
    margin-bottom: 28px;
}
.mb-8 {
    margin-bottom: 32px;
}
.mb-12 {
    margin-bottom: 48px;
}

.mt-2 {
    margin-top: 8px;
}
.mt-05 {
    margin-top: 2px;
}
.mt-8 {
    margin-top: 32px;
}

.mt-6 {
    margin-top: 24px;
}

.ml-1 {
    margin-left: 4px;
}
.ml-8 {
    margin-left: 32px;
}
.ml-9 {
    margin-inline-start: 36px;
}

.mr-1 {
    margin-right: 4px;
}

.gap-1 {
    gap: 4px;
}
.gap-1-5 {
    gap: 6px;
}

.gap-2 {
    gap: 8px;
}

.gap-3 {
    gap: 12px;
}
.gap-4 {
    gap: 16px;
}
.gap-5 {
    gap: 20px;
}
.gap-6 {
    gap: 24px;
}
.gap-7 {
    gap: 28px;
}
.gap-8 {
    gap: 32px;
}

.uppercase {
    text-transform: uppercase;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-start {
    text-align: start;
}

.text-primary-foreground {
    color: #ffffff;
}
.text-muted-foreground {
    color: #717182;
}
.text-gray-500 {
    color: #6a7282;
}

.text-gray-600 {
    color: #4a5565;
}

.text-gray-800 {
    color: #1e2939;
}

.text-orange-500 {
    color: var(--color-orange-500);
}
.text-orange-700 {
    color: var(--color-orange-700);
}

.text-amber-500 {
    color: var(--color-amber-500);
}

.text-blue-500 {
    color: var(--color-blue-500);
}

.text-blue-400 {
    color: #51a2ff;
}
.text-blue-600 {
    color: #155dfc;
}
.text-teal-400 {
    color: #009689;
}
.text-amber-600 {
    color: #e17100;
}
.text-green-600 {
    color: #00a63e;
}
.text-red-600 {
    color: #e7000b;
}
.text-teal-600 {
    color: #009689;
}
.text-teal-800 {
    color: var(--color-teal-800);
}
.text-purple-600 {
    color: #9810fa;
}
.text-white {
    color: #fff;
}
.text-zinc-300 {
    color: #d8d3d4;
}
.text-zinc-400 {
    color: #9f9fa9;
}
.text-gray-400 {
    color: #99a1af;
}
.text-emerald-600 {
    color: var(--color-emerald-600);
}
.text-slate-900 {
    color: var(--color-slate-900);
}
.text-slate-500 {
    color: var(--color-slate-500);
}
.text-slate-600 {
    color: var(--color-slate-600);
}
.text-slate-100 {
    color: var(--color-slate-100);
}
.text-slate-200 {
    color: var(--color-slate-200);
}
.text-slate-300 {
    color: var(--color-slate-300);
}

.text-sidebar-foreground, .text-sidebar-foreground\/70 {
    color: #0a0a0a;
}

.tracking-wide {
    --tw-tracking: .025em;
    letter-spacing: 0.3px;
}

.font-bold {
    --tw-font-weight: 700;
    font-weight: 700;
}

.font-medium {
    --tw-font-weight: 500;
    font-weight: 500;
}

.text-xs {
    font-size: 12px;
    line-height: 1.33333;
}
.text-sm {
    font-size: 14px;
    line-height: 1.42857;
}
.text-lg {
    font-size: 18px;
    line-height: 1.55556;
}

.font-semibold {
    --tw-font-weight: 600;
    font-weight: 600;
}

.text-2xl {
    font-size: 24px;
    line-height: 1.33333;
}
.text-4xl {
    font-size: 48px;
    line-height: 1.33333;
}

.font-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}


.tracking-wider {
    --tw-tracking: var(--tracking-wider);
    letter-spacing: var(--tracking-wider);
}

.bg-gray-100 {
    background-color: #f6f3f4;
}

.rounded-lg {
    border-radius: 10px;
}
.bg-teal-50 {
    background-color: var(--color-teal-50);
}

.bg-teal-600 {
    /*background-color: #009689;*/
    background-color:var(--primary);
}

.bg-teal-100 {
    background-color: var(--color-teal-100);
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .3s;
}

.duration-300 {
    --tw-duration: .3s;
    transition-duration: .3s;
}

.inset-0 {
    inset: 0px;
}



.bg-nav {
    background-color: #00786f;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.z-10 {
    z-index: 10;
}
.z-50 {
    z-index: 50;
}

.right-0 {
    right: 0px;
}

.bottom-0 {
    bottom: 0px;
}

.left-0 {
    left: 0px;
}
.left-40 {
    left: 40px;
}

.left-min-100 {
    left: -100px;
}
.left-min-220 {
    left: -220px;
}

.h-1 {
    height: 4px;
}

.rounded-3xl {
    border-radius: 24px;
}

.rounded-2xl {
    border-radius: 16px;
}
.rounded-xl {
    border-radius: 14px;
}

.rounded-full {
    border-radius: 3.40282e38px;
}

.rounded-t-full {
    border-top-left-radius: 3.40282e38px;
    border-top-right-radius: 3.40282e38px;
}
.rounded-r-lg {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.bg-gradient-to-r {
    --tw-gradient-position: to right in oklab;
    background-image: linear-gradient(var(--tw-gradient-stops));
}

.from-teal-500 {
    --tw-gradient-from: #009689;
    --tw-gradient-stops: var(--tw-gradient-via-stops);
}

.to-cyan-500 {
    --tw-gradient-to: #00b8db;
    --tw-gradient-stops: var(--tw-gradient-via-stops);
}

.shadow_default {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}
.shadow-sm {
    --tw-shadow: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;
}
.shadow-sm-chatgpt {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.shadow-md {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
}
.shadow-lg {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
}
.shadow-xl {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
}
.shadow-2xl {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}
.shadow-none {
    box-shadow: none;
}
.shadow-inner {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.btn-shadow {
    box-shadow: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05), 0 0 15px rgba(20,184,166,0.5);
}

.top-full {
    top: 100%;
}

.bg-border {
    background-color: var(--border);
}

.bg-primary {
    background-color: #030213;
}

.bg-white {
    background-color: #fff;
}
.bg-icono-submenu {
    background-color: #00786f;
}
.bg-zinc-900 {
    background-color: #1b1718;
}
.bg-zinc-800 {
    background-color: #2a2627;
}
.bg-blue-600 {
    background-color: #155dfc;
}
.bg-emerald-100 {
    background-color: var(--color-emerald-100);
}
.bg-emerald-600 {
    background-color: var(--color-emerald-600);
}
.bg-purple-100 {
    background-color: var(--color-purple-100);
}
.bg-gray-50 {
    background-color: var(--color-gray-50);
}
.bg-gray-500 {
    background-color: var(--color-gray-500);
}

.border-zinc-700 {
    border-color: #3f3f47;
}
.border-teal-200 {
    border-color: var(--color-teal-200);
}
.border-teal-100 {
    border-color: var(--color-teal-100);
}

.my-label {
    display: block;
    margin-bottom: 5px;
    color: #444; 
}

.my-combobox {
    width: 100%;
    height: 20px;
    padding: 5px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #f9fafb; 
}
.dxeButtonEdit_Material .dxeEditArea_Material {
    background-color: #f9fafb;
}
.dxeButtonEditButton_Material, .dxeCalendarButton_Material, .dxeSpinIncButton_Material, .dxeSpinDecButton_Material, .dxeSpinLargeIncButton_Material, .dxeSpinLargeDecButton_Material, .dxeColorEditButton_Material {
    background-color: #f9fafb;
    background-image: none;
    vertical-align: middle;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    border: none;
}
.dxeButtonEditButtonHover_Material .dxEditors_edtDropDown_Material {
    background-position: -413px -30px !important; 
    background-size: 538px auto; 
    width: 10px;
    height: 10px;
}
/* -- Hover -- */
.dxeButtonEditButtonHover_Material,
.dxeSpinIncButtonHover_Material,
.dxeSpinDecButtonHover_Material,
.dxeSpinLargeIncButtonHover_Material,
.dxeSpinLargeDecButtonHover_Material {
    background-color: #f9fafb;
    color: black !important;
}

.my-textbox {
    width: 100%;
    height: 45px;
    padding: 5px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #f9fafb;  
}

.dxeTextBox .dxeEditArea {
    background-color: #f9fafb; 
}

.dxeButtonEdit .dxeEditArea {
    background-color: #f9fafb;
}



/*Border*/
.border-t {
    border-top-style: solid;
    border-top-width: 1px;
}
.border-sidebar-border {
    border-color: #e5e5e5;
}
.border-gray-200 {
    border-color: #ebe6e7;
}
.border-orange-500 {
    border-color: var(--color-orange-500);
}
.border-red-500 {
    border-color: #dc3545;
}

.border {
    border-style: solid;
    border-width: 1px;
}
.border-b {
    border-bottom-style: solid;
    border-bottom-width: 1px;
}
.border-l-4 {
    border-left-style: solid;
    border-left-width: 4px;
}
.border-border {
    border-color: #0000001a;
}

/*Ancho*/
.max-content {
    width:max-content;
}
.min-w-0 {
    min-width: 0px;
}
.min-w-600 {
    min-width: 600px;
}
.w-1 {
    width: 4px;
}
.w-2 {
    width: 8px;
}
.w-3 {
    width: 12px;
}
.w-4 {
    width: 16px;
}
.w-5 {
    width: 20px;
}
.w-6 {
    width: 24px;
}
.w-7 {
    width: 28px;
}
.w-8 {
    width: 32px;
}
.w-9 {
    width: 36px;
}
.w-10 {
    width: 40px;
}
.w-11 {
    width: 44px;
}
.w-12 {
    width: 48px;
}
.w-16 {
    width: 64px;
}
.w-20 {
    width: 80px;
}
.w-full {
    width: 100%;
}
.w-50 {
    width: 50%;
}
.w-200px {
    width: 200px!important;
}
.w-btntrack {
   width: 110px;
}
.w-btnnewtrack {
    width: 300px;
}
.max-w-4xl {
    max-width: 56rem;
}
.max-w-7xl {
    max-width: 1280px;
}

.mx-auto {
    margin-inline: auto;
}

/*Alto*/
.h-1 {
    height: 4px;
}
.h-2 {
    height: 8px;
}
.h-3 {
    height: 12px;
}
.h-4 {
    height: 16px;
}
.h-5 {
    height: 20px;
}
.h-6 {
    height: 24px;
}
.h-7 {
    height: 28px;
}
.h-8 {
    height: 32px;
}
.h-9 {
    height: 36px;
}
.h-10 {
    height: 40px;
}
.h-11 {
    height: 44px;
}
.h-12 {
    height: 48px;
}
.h-16 {
    height: 64px;
}
.h-20 {
    height: 80px;
}
.space-y-2 > * + * {
    margin-top: 8px;
}
.space-y-3 > * + * {
    margin-top: 12px;
}
.space-y-4 > * + * {
    margin-top: 16px;
}
.space-y-5 > * + * {
    margin-top: 20px;
}
.space-y-6 > * + * {
    margin-top: 24px;
}



/*Shadow*/
.shadow-2xl {
    --tw-shadow: 0 25px 50px -12px #00000040;
    box-shadow: #0000, #0000, #0000, #0000, 0 25px 50px -12px #00000040;
}

.justify-center {
    justify-content: center;
}



.btn-menu {
    border: none;
    background: #0f766e;
    color: white;
    font-weight: bold;
    border-radius: 10px 10px 0px 0px;
    cursor: pointer;
}

    .btn-menu:hover {
        background: #0d9488;
    }


/* boton login */
.btn-tools {
    width: 100%;
    height: 45px;
    margin-top: 25px;
    border: none;
    background: var(--primary);
    color: white;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
}

    .btn-tools:hover {
        background: var(--secondary);
    }


.space-x-3 > *:not(:last-child) {
    margin-right: 12px;
}
.space-x-2 > *:not(:last-child) {
    margin-right: 8px;
}
.space-x-1 > *:not(:last-child) {
    margin-right: 4px;
}



.btn-submenu {
    border: none;
    background: #fff;
    color: #4a5565;
    font-weight: bold;
    cursor: pointer;
    text-align:left;
}

    .btn-submenu:hover {
        background: #e6f7f6;
        color: #0f766e;
    }


/* CAJA PRINCIPAL */

.support-box {
    background: linear-gradient(to right,#0d9488,#0f766e);
    color: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.15);
}

/* CONTENEDOR FLEX */

.support-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

/* TEXTO */

.support-text h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.support-text p {
    color: #ccfbf1;
}

/* BOTÓN */

.support-btn {
    padding: 12px 24px;
    background: white;
    color: #0f766e;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background .3s;
}

    .support-btn:hover {
        background: #f0fdfa;
    }


.container-footer-sm {
    padding-left: 16px;
    padding-right: 16px;
}

@media (min-width:640px) {
    .container-footer-sm {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.container-footer-lg {
    padding-left: 16px;
    padding-right: 16px;
}

@media (min-width:1024px) {

    .container-footer-lg {
        padding-left: 32px;
        padding-right: 32px;
    }
}

.footer-fila1-lg {
    display: flex;
    flex-direction: column;
}

@media (min-width:1024px) {

    .footer-fila1-lg {
        flex-direction: row;
    }
}

.footer-fila1-sm {
    display: flex;
    flex-direction: column; /* móvil */
}

@media (min-width:640px) {

    .footer-fila1-sm {
        flex-direction: row;
    }
}

.footer-titulo {
    text-align: center; /* móvil */
}

@media (min-width:1024px) {

    .footer-titulo {
        text-align: left;
    }
}

.link {
    color: white;
    text-decoration: none;
}

    .link:hover {
        color: #60A5FA;
    }



/* CONTENEDOR */

.main-container {
    max-width: 1280px;
    margin: auto;
    padding: 0px 24px 24px 24px;
}

/* ESPACIADO GENERAL */

.dashboard {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* HEADER */

.page-title {
    font-size: 30px;
    font-weight: 700;
    color: #111827;
}

.page-subtitle {
    color: #4b5563;
    margin-top: 4px;
}

/* GRID DE TARJETAS */

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* RESPONSIVE */

@media (min-width:768px) {
    .stats-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (min-width:1024px) {
    .stats-grid {
        grid-template-columns: repeat(4,1fr);
    }
}

/* CARD */

.card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow .2s;
}

    .card:hover {
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .card-header h4 {
        font-size: 14px;
        color: #4b5563;
    }

.stat-number {
    font-size: 30px;
    font-weight: 700;
    color: #111827;
}

.stat-up {
    color: #16a34a;
    font-size: 12px;
}

.stat-down {
    color: #dc2626;
    font-size: 12px;
}

/* ICONOS */

.icon {
    padding: 10px;
    border-radius: 8px;
}

.blue {
    background: #eff6ff;
}

.green {
    background: #ecfdf5;
}

.red {
    background: #fef2f2;
}

.amber {
    background: #fffbeb;
}

/* QUICK ACTIONS */

.actions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width:768px) {
    .actions-grid {
        grid-template-columns: repeat(4,1fr);
    }
}

.action {
    padding: 16px;
    border-radius: 10px;
    border: 2px solid;
    text-align: left;
    cursor: pointer;
    transition: background .2s;
}

    .action h3 {
        font-weight: 600;
        color: #111827;
    }

    .action p {
        font-size: 14px;
        color: #4b5563;
        margin-top: 4px;
    }

.teal {
    background: #f0fdfa;
    border-color: #99f6e4;
}

    .teal:hover {
        background: #ccfbf1;
    }

.blue {
    background: #eff6ff;
    border-color: #bfdbfe;
}

    .blue:hover {
        background: #dbeafe;
    }

.purple {
    background: #faf5ff;
    border-color: #e9d5ff;
}

    .purple:hover {
        background: #f3e8ff;
    }





.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}

.loading-process {
    background-color: #f0fdfa;
    border-radius: 20px;
    border-style: solid;
}


/*Breadcrumb*/
/* CONTENEDOR */

.breadcrumb {
    font-size: 14px;
    color: #6b7280; /* text-muted-foreground */
}

.breadcrumbconf {
    padding-inline-start: 0px !important;
    margin-block-start: 0px !important;
    margin-block-end: 15px !important;
}

/* LISTA */

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    list-style:none;
    align-items: center;
    gap: 6px;
    word-break: break-word;
}

/* RESPONSIVE (sm:gap-2.5) */

@media (min-width:640px) {
    .breadcrumb-list {
        gap: 10px;
    }
}

/* ITEMS */

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    /* LINKS */

    .breadcrumb-item a {
        color: inherit;
        text-decoration: none;
        transition: color .2s;
    }

        .breadcrumb-item a:hover {
            color: #111827; /* text-foreground */
        }

/* SEPARADOR */

.separator {
    color: #9ca3af;
}

/* ACTIVO */

.breadcrumb-item.active {
    color: #111827;
    font-weight: 400;
    cursor: default;
}



/* boton delete */
.btn-delete {
    width: 100%;
    height: 45px;
    margin-top: 25px;
    border: solid;
    border-color: #D81818!important; 
    border-radius: 10px;
    cursor: pointer;
}
    .btn-delete:hover {
        background: #ff00000d;
        color: #D81818 !important;
    }

.btn-edit-drawer {
    cursor: pointer;
}

    .btn-edit-drawer:hover {
        border-style: solid;
        border-width: 1px;
        background: #d0fae5a1;
        color: var(--primary) !important;
    }

    .btn-edit-drawer > svg :hover {
        border-style: solid;
        border-width: 1px;
        background: #d0fae5a1;
        color: var(--primary) !important;
    }

.btn-delete-drawer {  
    cursor: pointer;
}

    .btn-delete-drawer:hover {
        border-style: solid;
        border-width: 1px;
        background: #ff00000d;
        color: #D81818 !important;
    }

    .btn-delete-drawer > svg :hover {
        border-style: solid;
        border-width: 1px;
        background: #ff00000d;
        color: #D81818 !important;
    }


/* boton export */
.btn-export {
    width: 100%;
    height: 45px;
    margin-top: 25px;
    border: solid;
    border-color: var(--primary) !important;
    border-radius: 10px;
    cursor: pointer;
}
    .btn-export:hover {
        background: #00786f17;
        color: var(--primary) !important;
    }
 
/* boton login */
.btn-login {
    width: 100%;
    height: 45px;
    margin-top: 25px;
    border: solid;
    border-color: var(--primary);
    background: var(--primary);
    color: white;
    border-radius: 10px;
    cursor: pointer;
}

    .btn-login:hover {
        background: #0f766e;
        border-color: #0f766e;
    }

.btn-search {
    width: 100%;
    height: 45px;
    border: solid;
    margin-top: 25px;
    border-color: var(--primary);
    background: var(--primary);
    color: white;
    border-radius: 10px;
    cursor: pointer;
}

    .btn-search:hover {
        background: var(--secondary);
        border: solid;
        border-color: var(--secondary);
    }

.btn-default { 
    height: 45px;
    border: solid;
    border-color: var(--primary);
    background: var(--primary);
    color: white;
    border-radius: 10px;
    cursor: pointer;
}

    .btn-default:hover {
        background: var(--secondary);
        border: solid;
        border-color: var(--secondary);
    }

.btn-default-outline { 
    height: 45px;
    border: solid; 
    border-color: var(--primary);
    background-color:white;
    color: var(--primary);
    border-radius: 10px;
    cursor: pointer;
}

    .btn-default-outline:hover {
        border: solid;
        color: var(--secondary);
        border-color: var(--secondary);
        background-color:var(--color-gray-100);
    }

.btn-track { 
    border: solid;
    border-color: var(--color-gray-100);
    background: var(--color-gray-100); 
}

    .btn-track:hover {
        border: solid;
        border-color: var(--color-gray-200);
        background: var(--color-gray-200);
    }


/*Style AspxGridView*/ 
/* Página activa */
.dxp-current {
    color: #0d9488 !important;
    font-weight: bold;
    font-family: "Poppins", sans-serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
}


/*Badge*/
.text-orange-700 {
    color: var(--color-orange-700);
}
.border-orange-500 {
    border-color: var(--color-orange-500);
}
.bg-orange-50 {
    background-color: var(--color-orange-50);
}
.bg-amber-50 {
    background-color: var(--color-amber-50);
}
.bg-amber-100 {
    background-color: #fef3c6;
}
.text-amber-700 {
    color: #bb4d00;
}
.border-transparent {
    border-color: #0000;
}
.rounded-md {
    border-radius: 8px;
}
.text-green-700 {
    color: #008236;
}
.text-green-800 {
    color: #00a63e;
}
.bg-green-100 {
    background-color: #dcfce7;
}
.text-red-700 {
    color: #c10007;
}
.text-red-800 {
    color: #b9444f;
}
.text-card-foreground {
    color: var(--card-foreground);
}
.bg-orange-50 {
    background-color: var(--color-orange-50);
}
.bg-red-50 {
    background-color: #fef2f2;
}
.border-red-300 {
    border-color: #ffa2a2;
}
.text-blue-700 {
    --tw-text-opacity: 1;
    color: rgb(29 78 216 / 1);
}
.text-foreground {
    color: #0a0a0a;
}
.bg-blue-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(239 246 255 / 1);
}
.from-blue-500 {
    --tw-gradient-from: #2b7fff;
}
.to-blue-600 {
    --tw-gradient-to: #155dfc;
}
.text-gray-700 {
    color: var(--color-gray-700);
}
.text-gray-900 {
    color: var(--color-gray-900);
}

.bg-blue-100 {
    background-color: var(--color-blue-100);
}

.bg-green-50 {
    background-color: #dcfce7;
}
.border-green-500 {
    border-color: #86efac;
}
.rounded {
    border-radius: .25rem;
}



.dropdown {
    position: relative;
} 

.dropdown-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    padding: 6px;
    border-radius: 6px;
} 
    .dropdown-btn:hover {
        background: #f2f2f2;
    }

/* MENU */
.dropdown-menu {
    position: fixed;
    right: 36px;
    /*top: 0px;*/
    width: 450px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px); /* efecto glass 🔥 */
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.08);
    opacity: 0;
    transform: translateY(-12px) scale(0.96);
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 999;
} 
/* ACTIVO */
.dropdown.active .dropdown-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
} 
.dropdown-menu button {
    width: 100%;
    padding: 11px 14px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
    border-radius: 10px;
    transition: all 0.2s ease;
} 
    /* HOVER PRO */
    .dropdown-menu button:hover {
        background: #e6f7f6;
        color: #0f766e;
        transform: translateX(3px);
    } 

/* ICONOS */
.dropdown-menu i {
    width: 18px;
    text-align: center;
    opacity: 0.7;
} 
/* DELETE */
.dropdown-menu .danger {
    color: #e53935;
} 
    .dropdown-menu .danger:hover {
        background: rgba(229,57,53,0.1);
    } 

.dropdown-menu button {
    opacity: 0;
    transform: translateY(-5px);
} 

/* cuando abre */
.dropdown.active .dropdown-menu button {
    opacity: 1;
    transform: translateY(0);
}




/*Dropdown pra track*/ 


    /* delay progresivo */
    /*.dropdown.active .dropdown-menu button:nth-child(1) {
        transition: all 0.2s ease 0.05s;
    }

    .dropdown.active .dropdown-menu button:nth-child(2) {
        transition: all 0.2s ease 0.1s;
    }

    .dropdown.active .dropdown-menu button:nth-child(3) {
        transition: all 0.2s ease 0.15s;
    }*/



/*Devexpress*/
.dxgvControl a {
    color: #00786f !important;
    text-decoration:none;
}
a.dxeHyperlink:hover {
    color: black !important;
}
.dxeHyperlink {
    font-family: "Poppins", sans-serif !important;
    font-weight: 400;
    font-style: normal;
    color: #0d45b7;
}

.dxpLite .dxp-summary, .dxpLite .dxp-ellip {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    white-space: nowrap;
    padding: 3px 4px 2px;
}



/*Drawer*/
.btn-drawer {
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
    background: #0f766e;
}

    .btn-drawer:hover {
        background: #0c5c55;
    }

.display-none {
    display: none;
}
.invisible {
    visibility: hidden;
}
.fixed {
    position: fixed;
}
.bg-black-40 {
    background-color: rgb(0 0 0 / 0.4);
}
.opacity-0 {
    opacity: 0;
}
.z-40 {
    z-index: 40;
}
.top-0 {
    top: 0px;
}
.h-full {
    height: 100%;
}
.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%;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 0;
    --tw-scale-y: 0;
    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));
}
@media (min-width: 768px) {
    .md\:w-\[400px\] {
        width: 450px;
    }
}
.bg-gradient-to-br {
    /*background: linear-gradient(121deg, rgba(0, 201, 81, 1) 0%, rgba(0, 150, 137, 1) 42%);*/
    background-image: linear-gradient(to top, #0e393a, #0d4143, #0a4a4c, #065355, #015c5e);
}
.bg-gradient-card-drawer {
    background: #F5F5F5;
    background: linear-gradient(90deg,rgba(245, 245, 245, 1) 0%, rgba(250, 250, 250, 1) 66%);
}
.top-4 {
    top: 16px;
}
.right-4 {
    right: 16px;
}

.overflow-hidden {
    overflow: hidden;
}
.overflow-y-auto {
    overflow-y: auto;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
}

.element {
    transition: box-shadow 0.3s ease;
}

    .element:hover {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
        /*transform: translateY(-2px);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);*/ 
    }


.line-clamp-2 {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}









/*Card Toggle*/
/* ===== CARD ===== */
.cardtoggle {
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.cardtoggle-header {
    padding: 12px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    background: #fff;
    transition: 0.2s;
}

    .cardtoggle-header:hover {
        background: var(--accent);
    }

/* ===== DETAILS ===== */
.cardtoggle-body {
    display: none;
    padding: 12px;
    border-top: 1px solid var(--border);
    background: #fafafa;
}

    .cardtoggle-body.active {
        display: block;
    }

.cardtogglerow {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 6px;
}

    .cardtogglerow span:first-child {
        color: var(--muted);
    }

.cardtogglestatus {
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 6px;
    background: var(--green-bg);
    color: var(--green-text);
}
.cardtogglebadge {
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(13,148,136,0.1);
    color: var(--teal);
}

.fila-especial {
    transition: background-color 0.2s ease;
}
    .fila-especial:hover {
        background-color: #f9fafb; /* azul claro */
    }

/*tr {
    transition: background-color 0.2s ease;
}

    tr:hover {
        background-color: #f9fafb;*/ /* equivalente a gray-50 */
    /*}*/


.linea-centro {
    position: absolute;
    top: 35%;
    left: 5%;
    right: 2%;
    height: 4px;
    background-color: #059669; /* emerald-600 */
    transform: translateY(-50%);
}
.linea-centro-pending {
    position: absolute;
    top: 35%;
    left: 5%;
    right: 2%;
    height: 4px;
    background-color: var(--color-gray-500); /* emerald-600 */
    transform: translateY(-50%);
}
.linea-centro-0 {
    position: absolute;
    top: 35%;
    left: 5%;
    right: 87%;
    height: 4px;
    background-color: #059669; /* emerald-600 */
    transform: translateY(-50%);
}
.linea-centro-1 {
    position: absolute;
    top: 35%;
    left: 5%;
    right: 74%;
    height: 4px;
    background-color: #059669; /* emerald-600 */
    transform: translateY(-50%);
}
.linea-centro-2 {
    position: absolute;
    top: 35%;
    left: 5%;
    right: 50%;
    height: 4px;
    background-color: #059669; /* emerald-600 */
    transform: translateY(-50%);
}
.linea-centro-3 {
    position: absolute;
    top: 35%;
    left: 5%;
    right: 26%;
    height: 4px;
    background-color: #059669; /* emerald-600 */
    transform: translateY(-50%);
}
.linea-centro-4 {
    position: absolute;
    top: 35%;
    left: 5%;
    right: 2%;
    height: 4px;
    background-color: #059669; /* emerald-600 */
    transform: translateY(-50%);
}


.dxeMemoEditArea {
    background-color: #f9fafb;
    outline: none;
}




.m-0 {
    margin: 0px;
}

.max-w-3xl {
    max-width: 768px;
}
.max-w-5xl {
    max-width: 1024px;
}

.max-w-status {
    max-width: 1224px;
}

.border-slate-200 {
    border-color: var(--color-slate-200);
}
.bg-slate-50 {
    background-color: #f8fafc;
}
.w-fit {
    width: fit-content;
}

.btn-tab {
    background-color:white;
}
    .btn-tab.active {
        color: var(--primary);
        background-color: #00968829;
    }

.gap-y-4 {
    row-gap: 16px;
}
.gap-x-6 {
    column-gap: 24px;
}


 



/*esto es param el drag&drop*/
 
.dropZoneExternal { 
    border: 1px dashed var(--primary) !important;
    cursor: pointer;
    width:100%;
    height:50px;
    text-align:center;
    align-content:center;
    border-radius:10px;
}


.history-line {
    left:29px;
    top:36px;
    bottom:-12px;
    width:2px;
}
.bg-history-line {
    background-color: #f8f9fa;
}
    .bg-history-line:hover {
        background-color: #f3f4f5;
    }

.border-border-historyline-50 {
    border-color: var(--borderhistoryline);
}

.transition-colors {
    transition-property: color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;
    transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
    transition-duration: var(--tw-duration,var(--default-transition-duration))
}



.grid-container-historyline {
    display: grid;
    /* Three columns: 100px, flexible middle, and 25% width */
    grid-template-columns: 10% 2fr 1fr;
    gap: 30px;  
}

.h-historyline {
    height: 660px; 
}

/*.h-historyline-sesion { 
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #f1f1f1;
}*/

.h-historyline-sesion {
    height: 660px; /* ocupa todo el contenedor */
    overflow-y: auto; /* activa scroll vertical automático */
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #f1f1f1;
    margin-bottom: 20px;
}

.h-historyline-sesion-multistatus {
    height: 600px; /* ocupa todo el contenedor */
    overflow-y: auto; /* activa scroll vertical automático */
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #f1f1f1;
    margin-bottom:20px;
}