:root {
    --primary-dark: #003366;    /* Azul Marino Deqas */
    --accent-blue: #0066b2;     /* Azul brillante */
    --accent-cyan: #00bfa5;     /* Turquesa/Verde vibrante para estatus */
    --bg-light: #f4f7f6;        /* Fondo gris claro */
    --white: #ffffff;
    --text-main: #333333;
    --shadow: 0 10px 30px rgba(0, 51, 102, 0.1);
}

.card-container {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.custom-card {
    background: var(--white);
    border-radius: 24px;
    padding: 25px;
    flex: 1;
    position: relative;
    box-shadow: var(--shadow);
    margin-top: 20px; /* Espacio para el icono flotante */
}

.card-icon-floating {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.bg-cyan { background-color: var(--accent-cyan); }
.bg-blue { background-color: var(--accent-blue); }

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 15px 0 10px 0;
}

.table-container {
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
}

.custom-table th {
    text-align: left;
    padding: 16px;
    color: #888;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.custom-table td {
    padding: 15px;
    font-size: 14px;
    vertical-align: middle;
    border-bottom: 1px solid #f9f9f9;
}

/* Botones de acción minimalistas */
.action-btn {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: white;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
    margin-right: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.action-btn:hover {
    background: var(--primary-dark);
    color: white;
    border-color: var(--primary-dark);
}

.action-btn i,
.action-btn svg {
    line-height: 1;
    display: block;
    width: 16px;
    height: 16px;
    text-align: center;
}

.custom-table .has-table-tooltip {
    position: relative;
}

.custom-table .has-table-tooltip:hover,
.custom-table .has-table-tooltip:focus-visible {
    box-shadow: 0 0 0 4px rgba(0, 102, 178, 0.12);
}

.table-action-tooltip {
    position: fixed;
    top: 0;
    left: 0;
    max-width: 240px;
    padding: 10px 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.96), rgba(0, 102, 178, 0.94));
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.35;
    box-shadow: 0 18px 40px rgba(0, 51, 102, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, calc(-100% - 8px)) scale(0.96);
    transform-origin: center bottom;
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
    z-index: 12000;
}

.table-action-tooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    width: 14px;
    height: 14px;
    background: rgba(0, 88, 150, 0.96);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateX(-50%) rotate(45deg);
}

.table-action-tooltip.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, calc(-100% - 12px)) scale(1);
}

.table-action-tooltip.tooltip-bottom {
    transform: translate(-50%, 10px) scale(0.96);
    transform-origin: center top;
}

.table-action-tooltip.tooltip-bottom.is-visible {
    transform: translate(-50%, 14px) scale(1);
}

.table-action-tooltip.tooltip-bottom::after {
    top: -7px;
    bottom: auto;
    border-right: none;
    border-bottom: none;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* --- ESTILOS PARA EL MODAL --- */

/* Contenedor del Modal (Overlay/Fondo oscuro) */
.dashboard-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
}

@media (max-height: 600px) {
    .dashboard-modal-overlay {
        align-items: center;
    }
}

/* Clase para mostrar el modal */
.dashboard-modal-overlay.open {
    visibility: visible;
    opacity: 1;
}

/* La Tarjeta del Modal */
.dashboard-modal-card {
    background-color: #ffffff;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    max-height: none;
    height: auto;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    margin: auto 0;
}

@media (max-width: 480px) {
    .dashboard-modal-card {
        width: 95%;
        padding: 20px;
        margin: 20px 0;
        max-height: calc(100vh - 80px);
    }
}

.dashboard-modal-overlay.open .dashboard-modal-card {
    transform: translateY(0);
}

/* Cabecera del Modal */
.dashboard-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.dashboard-modal-title {
    color: #333;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    font-size: 1.5rem;
    padding: 5px;
}

.dashboard-modal-close:hover {
    color: #333;
}

/* Cuerpo del Modal (Formulario) */
.dashboard-modal-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-right: 5px;
}

@media (max-width: 480px) {
    .dashboard-modal-body {
        gap: 12px;
    }
}

/* Grupo de Formulario */
.dashboard-form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dashboard-form-label {
    color: #555;
    font-size: 0.9rem;
    font-weight: 600;
}

.dashboard-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.dashboard-input-icon {
    position: absolute;
    left: 15px;
    color: #888;
    font-size: 1.2rem;
    pointer-events: none;
}

.dashboard-modal-input {
    width: 100%;
    padding: 12px 15px 12px 45px; /* Padding extra para el icono */
    border-radius: 10px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    font-family: inherit;
    font-size: 0.95rem;
    color: #333;
    transition: border-color 0.2s;
}

.dashboard-modal-input::placeholder {
    color: #aaa;
}

.dashboard-modal-input:focus {
    outline: none;
    border-color: #003366; /* Color de foco basado en tu marca */
}

/* Grid de Formulario (para Nombre/Apellido, etc.) */
.dashboard-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

/* Pie del Modal (Botones) */
.dashboard-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .dashboard-modal-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .dashboard-modal-footer .dashboard-modal-btn {
        width: 100%;
        padding: 10px 16px;
        min-height: 40px;
    }
}

/* Estilo Base de los Botones del Modal */
.dashboard-modal-btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    -webkit-user-select: none;
}

@media (max-width: 480px) {
    .dashboard-modal-btn {
        min-height: 40px;
        padding: 10px 16px;
        font-size: 0.95rem;
    }
}

/* Botón Guardar (Basado en el botón "Nuevo conductor" de image_22.png) */
.dashboard-btn-save {
    background-color: #333333; /* Color oscuro similar */
    color: #ffffff;
}

.dashboard-btn-save:hover {
    background-color: #222222;
}

.dashboard-btn-save:active {
    background-color: #1a1a1a;
}

/* Botón Cancelar (Referencia para cerrar el modal de image_24.png) */
.dashboard-btn-cancel {
    background-color: #dee2e6; /* Gris muted para cancelar */
    color: #555555;
    border: 1px solid #ccc;
}

.dashboard-btn-cancel:hover {
    background-color: #ced4da;
    color: #333333;
}

.dashboard-btn-cancel:active {
    background-color: #bcc3cb;
}

/* --- ESTILOS PARA PAGINATION.JS --- */

/* Contenedor principal de la paginación */
.paginationjs {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

/* La lista <ul> que genera la librería */
.paginationjs-pages ul {
    display: flex !important; /* Cambia de vertical a horizontal */
    list-style: none !important;
    padding: 0;
    margin: 0;
    gap: 8px; /* Espacio entre botones */
}

/* Estilo de cada item <li> y el enlace <a> */
.paginationjs-page, 
.paginationjs-prev, 
.paginationjs-next, 
.paginationjs-ellipsis {
    float: none !important; /* Limpiamos floats antiguos */
}

.paginationjs-page a, 
.paginationjs-prev a, 
.paginationjs-next a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    text-decoration: none !important;
    color: #555 !important;
    background-color: #ffffff !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 10px !important; /* Redondeado igual a tus inputs */
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

/* Efecto Hover */
.paginationjs-page a:hover, 
.paginationjs-prev a:hover, 
.paginationjs-next a:hover {
    background-color: #f4f7f6 !important;
    border-color: #003366 !important;
    color: #003366 !important;
    transform: translateY(-2px);
}

/* Estado Activo (Página actual) */
.paginationjs-page.active a {
    background-color: #003366 !important; /* Tu color azul marino */
    border-color: #003366 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(0, 51, 102, 0.2);
}

/* Estilo para los puntos suspensivos (...) */
.paginationjs-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    color: #aaa;
}

/* Deshabilitado (cuando no hay más páginas) */
.paginationjs-disabled a {
    opacity: 0.5;
    cursor: not-allowed !important;
    pointer-events: none;
}

/* Flechas de Anterior y Siguiente */
.paginationjs-prev a, 
.paginationjs-next a {
    font-family: serif; /* O puedes usar iconos MDI si los configuras en JS */
    font-size: 1.2rem;
}

/* --- DISEÑO DE ENCABEZADO DE PÁGINA --- */
.dashboard-page-header {
    margin-bottom: 30px;
    padding-bottom: 10px;
    position: relative;
}

.header-subtitle {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-blue); /* El azul más claro de tu marca */
    font-weight: 700;
    margin-bottom: 4px;
}

.header-main-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.title-icon {
    background-color: #ffffff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--primary-blue);
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Sombra muy sutil */
}

.header-main-title h1 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue); /* Tu azul marino principal */
    letter-spacing: -0.5px;
}

.title-badge {
    background-color: #e0e7ff; /* Un azul muy pálido */
    color: #4338ca;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.header-separator {
    height: 3px;
    width: 60px;
    background: linear-gradient(90deg, var(--primary-blue), transparent);
    margin-top: 15px;
    border-radius: 2px;
}

/* Media Query específico para celulares pequeños */
@media (max-width: 480px) {
    .dashboard-modal-card {
        padding: 15px;
        border-radius: 15px;
    }

    .dashboard-form-grid {
        grid-template-columns: 1fr; /* Fuerza una sola columna en móviles */
        gap: 10px;
    }

    .dashboard-modal-footer {
        flex-direction: column; /* Botones uno sobre otro en móviles para mejor clic */
    }

    .dashboard-modal-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Subtítulo informativo */
.dashboard-modal-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

/* Contenedor de la lista de clientes */
.dashboard-clients-container {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px;
    min-height: 150px;
    max-height: 300px; /* Altura máxima con scroll interno */
    overflow-y: auto;
}

/* Estilo para los elementos dentro de box_clients (ej. checkboxes o lista) */
.box_clients .client-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.box_clients .client-item:last-child {
    border-bottom: none;
}

.box_clients .client-item:hover {
    background: #f0f4f8;
}

/* Contenedor principal de los clientes */
.box_clients {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

/* Estilo base para cada item de cliente */
#check_cli {
    padding: 8px 15px;
    border-radius: 12px;
    background-color: #f0f2f5; /* Gris claro suave */
    color: #444;               /* Texto oscuro para que se vea */
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid #dcdcdc;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    user-select: none;

    white-space: normal;     
    word-break: break-word;
    max-width: 100%;         /* No permite que el badge sea más ancho que el modal */
    line-height: 1.2;
}

/* Efecto al pasar el mouse */
#check_cli:hover {
    background-color: #e2e6ea;
    border-color: #003366;
}

/* ESTADO ACTIVO (Seleccionado) */
/* Cuando data-active="true", cambiamos a azul institucional */
#check_cli[data-active="true"] {
    background-color: #003366 !important;
    color: #ffffff !important;
    border-color: #002244;
    box-shadow: 0 4px 8px rgba(0, 51, 102, 0.2);
}

/* Icono dentro del item */
#check_cli i {
    font-size: 0.8rem;
    opacity: 0.7;
}

#check_cli[data-active="true"] i {
    color: #fff;
    opacity: 1;
}

@media (max-width: 480px) {
    .box_clients {
        justify-content: center; /* Centra los items en pantallas muy pequeñas */
        padding: 10px 5px;
    }

    #check_cli {
        width: calc(100% - 10px); /* Hace que el badge ocupe casi todo el ancho si es necesario */
        justify-content: flex-start;
        font-size: 0.85rem;      /* Ajusta un poco el tamaño de letra */
    }
}

/* Contenedor de la celda */
.table_cell_check {
    width: 40px;
    text-align: center;
    vertical-align: middle;
}

/* Ocultar el checkbox nativo */
.checkbox_hidden {
    display: none !important;
}

/* Diseño del cuadro personalizado (Label) */
.table_check_custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid #dcdcdc; /* Color gris cuando está vacío */
    border-radius: 5px;       /* Bordes redondeados */
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;                /* Quitar márgenes por defecto */
}

/* Icono dentro del cuadro */
.table_check_custom i {
    color: #fff;
    font-size: 14px;
    display: none;            /* Oculto por defecto */
}

/* --- ESTADOS --- */

/* Cuando el checkbox oculto está MARCADO */
.checkbox_hidden:checked + .table_check_custom {
    background-color: #003366; /* Azul institucional */
    border-color: #003366;
}

/* Mostrar el icono cuando el checkbox está MARCADO */
.checkbox_hidden:checked + .table_check_custom i {
    display: block;
}

/* Efecto hover al pasar sobre la celda o el cuadro */
.table_check_custom:hover {
    border-color: #003366;
    background-color: #f0f4f8;
}

/* Pequeña animación al marcar */
.checkbox_hidden:checked + .table_check_custom {
    transform: scale(1.05);
}

/* Contenedor principal (Fondo oscuro transparente) */
.dashboard-visor-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.9); /* Azul muy oscuro profundo */
    display: none; /* Se controla con el data-show o JS */
    z-index: 9999;
    backdrop-filter: blur(4px); /* Efecto de desenfoque al fondo */
    padding: 20px;
}

.dashboard-visor-overlay[data-show="true"] {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Caja contenedora del visor */
.dashboard-visor-container {
    width: 95%;
    height: 95%;
    background-color: #fff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Encabezado del visor */
.dashboard-visor-header {
    background-color: #f8fafc;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

.dashboard-visor-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: #003366;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-visor-title i {
    font-size: 1.5rem;
    color: #ef4444; /* Color rojo PDF */
}

/* Botón de cerrar estilizado */
.dashboard-visor-close {
    background-color: #fee2e2;
    color: #ef4444;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dashboard-visor-close:hover {
    background-color: #ef4444;
    color: #fff;
}

/* Contenedor del Iframe */
.dashboard-visor-content {
    flex: 1;
    background-color: #525659; /* Color estándar de fondo de PDF */
}

.content_iframe, .content_iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contenedor del listado para evitar el solapamiento */
#listOrder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 40px; /* Espacio para los círculos de la primera fila */
    gap: 20px;
}

.tag_card {
    width: 260px;
    background-color: #ffffff;
    margin: 15px;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: visible;
    font-family: 'Outfit', sans-serif !important; /* Aplicando Outfit */
}

.tag_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tag_card[data-select="true"] {
    border-color: #003366;
    background-color: #f8fafc;
}

/* Círculo con color sólido */
.tag_card .tag_circle {
    width: 55px;
    height: 55px;
    background-color: #003366; /* Color por defecto si no viene de JS */
    border-radius: 50%;
    position: absolute;
    top: -28px;
    left: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3);
    z-index: 5;
    border: 3px solid #ffffff; /* Borde blanco para resaltar */
}

.tag_card .tag_carg_header {
    width: 100%;
    height: 35px;
}

.tag_card_content {
    padding: 0 20px 20px 20px;
}

.title_tag_card {
    font-family: 'Outfit', sans-serif !important;
    font-size: 15px;
    font-weight: 800;
    color: #1e293b;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.tag_card_content p {
    font-family: 'Outfit', sans-serif !important;
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.tag_card_content i {
    color: #003366;
    margin-right: 8px;
    width: 18px;
    text-align: center;
}

.tag_driver {
    /* Dimensiones y Espaciado */
    width: auto;
    min-width: 180px;
    height: 42px;
    padding: 0 20px;
    margin: 8px 5px;
    
    /* Estética de Botón Moderno */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px; /* Estilo redondeado Deqas */
    border: none;
    cursor: pointer;
    
    /* Tipografía Outfit */
    font-family: 'Outfit', sans-serif !important;
    font-size: 13px;
    font-weight: 600;
    color: white; /* El color de fondo vendrá dinámicamente */
    
    /* Efectos de Elevación y Transición */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Efecto al pasar el mouse (Hover) */
.tag_driver:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1); /* Brillo sutil para indicar interacción */
}

/* Efecto al hacer clic (Active) */
.tag_driver:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Indicador de número (el '#' que aparece en tu imagen) */
.tag_driver::before {
    content: "ID";
    font-size: 10px;
    opacity: 0.7;
    margin-right: 8px;
    font-weight: 400;
    text-transform: uppercase;
}

/* ============================================
   Carrusel de Colaboradores (loginSubClient)
   ============================================ */
.collab-carousel-wrapper {
    width: 72%;
    max-width: 580px;
    text-align: center;
}
.collab-carousel-label {
    color: rgba(255,255,255,0.88);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.section_box .btn_box_colab {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    margin: 0 10px;
    backdrop-filter: blur(4px);
}
.section_box .btn_box_colab:hover {
    background: rgba(255,255,255,0.22);
    transform: translateY(-3px);
}
.section_box .logo_subclient {
    max-height: 72px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}
.section_box .btn_box_colab:hover .logo_subclient {
    opacity: 1;
}
.collab-carousel-wrapper .slick-dots li button:before {
    color: rgba(255,255,255,0.55);
    font-size: 8px;
}
.collab-carousel-wrapper .slick-dots li.slick-active button:before {
    color: #ffffff;
}

