/* ============================================
   SISTEMA DE GESTIÓN DE TALLER MECÁNICO
   Diseño Profesional - Sidebar Blanco + Amarillo Mostaza
   Versión: 3.0 - Sidebar Blanco Responsive
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   VARIABLES
   ============================================ */
:root {
    /* Paleta principal */
    --amarillo-mostaza: #D4A017;
    --amarillo-hover: #B8860B;
    --amarillo-claro: #F5E6CC;
    --amarillo-fondo: #FFF8E7;
    
    /* Neutros */
    --blanco: #FFFFFF;
    --gris-fondo: #F5F6F8;
    --gris-claro: #F9FAFB;
    --gris-borde: #E5E7EB;
    --gris-medio: #D1D5DB;
    --gris-texto: #6B7280;
    --gris-oscuro: #374151;
    --negro-texto: #1a1a1a;
    
    /* Sidebar Blanco */
    --sidebar-ancho: 260px;
    --sidebar-ancho-mini: 68px;
    --sidebar-bg: #FFFFFF;
    --sidebar-texto: #6B7280;
    --sidebar-texto-activo: #1a1a1a;
    --sidebar-hover-bg: #F5F6F8;
    --sidebar-activo-bg: #FFF8E7;
    --sidebar-activo-color: #D4A017;
    --sidebar-borde: #E5E7EB;
    
    /* Estados */
    --verde-exito: #059669;
    --verde-fondo: #D1FAE5;
    --verde-texto: #065F46;
    --rojo-error: #DC2626;
    --rojo-fondo: #FEE2E2;
    --rojo-texto: #991B1B;
    --azul-info: #2563EB;
    --azul-fondo: #DBEAFE;
    --azul-texto: #1E40AF;
    
    /* Sombras */
    --sombra-sidebar: 2px 0 12px rgba(0,0,0,0.06);
    --sombra-xs: 0 1px 2px rgba(0,0,0,0.04);
    --sombra-sm: 0 1px 3px rgba(0,0,0,0.06);
    --sombra-md: 0 4px 12px rgba(0,0,0,0.08);
    --sombra-lg: 0 8px 24px rgba(0,0,0,0.12);
    
    /* Bordes */
    --radio-sm: 4px;
    --radio-md: 6px;
    --radio-lg: 8px;
    --radio-xl: 12px;
    
    /* Transiciones */
    --transicion: all 0.2s ease;
    --transicion-lenta: all 0.3s ease;
}

/* ============================================
   RESET Y ESTILOS BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--gris-fondo);
    color: var(--negro-texto);
    line-height: 1.6;
    display: flex;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   SIDEBAR BLANCO PROFESIONAL
   ============================================ */
.sidebar {
    width: var(--sidebar-ancho);
    background: var(--sidebar-bg);
    color: var(--negro-texto);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
    overflow-y: auto;
    overflow-x: hidden;
    border-right: 1px solid var(--sidebar-borde);
    box-shadow: var(--sombra-sidebar);
    transition: var(--transicion-lenta);
}

/* Scrollbar personalizado sidebar */
.sidebar::-webkit-scrollbar {
    width: 4px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--gris-medio);
    border-radius: 4px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--gris-texto);
}

/* ============================================
   HEADER SIDEBAR - LOGO Y TÍTULO
   ============================================ */
.sidebar-header {
    padding: 24px 18px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--gris-borde);
    margin-bottom: 8px;
}

.sidebar-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: var(--radio-sm);
}

.sidebar-logo-placeholder {
    width: 40px;
    height: 40px;
    background: var(--amarillo-mostaza);
    border-radius: var(--radio-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanco);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.sidebar-titulo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    overflow: hidden;
}

.sidebar-titulo-principal {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gris-texto);
    text-transform: uppercase;
}

.sidebar-titulo-secundario {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--negro-texto);
}

/* ============================================
   SEPARADOR Y SECCIONES
   ============================================ */
.sidebar-divider {
    height: 1px;
    background: var(--gris-borde);
    margin: 8px 18px;
}

.sidebar-seccion {
    padding: 12px 18px 6px;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gris-texto);
    text-transform: uppercase;
}

/* ============================================
   NAVEGACIÓN PRINCIPAL
   ============================================ */
.sidebar-nav {
    flex: 1;
    padding: 6px 0;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    margin: 2px 10px;
    text-decoration: none;
    color: var(--sidebar-texto);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: var(--radio-md);
    transition: var(--transicion);
    white-space: nowrap;
    position: relative;
}

.sidebar-link:hover {
    background: var(--sidebar-hover-bg);
    color: var(--negro-texto);
}

.sidebar-link-activo {
    background: var(--sidebar-activo-bg);
    color: var(--sidebar-activo-color);
    font-weight: 600;
    border-left: 3px solid var(--amarillo-mostaza);
    padding-left: 15px;
}

.sidebar-link-activo:hover {
    background: var(--amarillo-claro);
    color: var(--amarillo-hover);
}

.sidebar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.sidebar-link-activo .sidebar-icon {
    color: var(--amarillo-mostaza);
}

/* ============================================
   FOOTER SIDEBAR - USUARIO
   ============================================ */
.sidebar-footer {
    padding: 15px;
    border-top: 1px solid var(--gris-borde);
    margin-top: auto;
    background: var(--gris-claro);
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    margin-bottom: 8px;
}

.sidebar-user-avatar {
    width: 34px;
    height: 34px;
    background: var(--amarillo-mostaza);
    color: var(--blanco);
    border-radius: var(--radio-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
    letter-spacing: 1px;
}

.sidebar-user-info {
    flex: 1;
    min-width: 0;
}

.sidebar-user-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--negro-texto);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-user-role {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--gris-texto);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sidebar-logout {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    text-decoration: none;
    color: var(--rojo-error);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: var(--radio-md);
    transition: var(--transicion);
    border: 1px solid transparent;
}

.sidebar-logout:hover {
    background: var(--rojo-fondo);
    border-color: #FECACA;
    color: var(--rojo-texto);
}

/* ============================================
   CONTENIDO PRINCIPAL
   ============================================ */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-ancho);
    padding: 30px;
    min-height: 100vh;
    background: var(--gris-fondo);
    transition: var(--transicion-lenta);
}

/* ============================================
   PÁGINA DE LOGIN
   ============================================ */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, var(--gris-fondo) 0%, var(--amarillo-fondo) 100%);
    padding: 20px;
}

.login-card {
    background: var(--blanco);
    padding: 40px;
    border-radius: var(--radio-xl);
    box-shadow: var(--sombra-lg);
    width: 100%;
    max-width: 420px;
    border-top: 3px solid var(--amarillo-mostaza);
}

.login-logo {
    text-align: right;
    margin-bottom: 24px;
}

.login-logo img {
    height: 55px;
    width: auto;
    border-radius: var(--radio-sm);
}

.login-titulo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--negro-texto);
    margin-bottom: 6px;
}

.login-subtitulo {
    color: var(--gris-texto);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* ============================================
   TARJETAS
   ============================================ */
.card {
    background: var(--blanco);
    border-radius: var(--radio-lg);
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: var(--sombra-sm);
    border: 1px solid var(--gris-borde);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gris-borde);
}

.card-titulo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--negro-texto);
    letter-spacing: 0.3px;
}

/* ============================================
   FORMULARIOS
   ============================================ */
.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gris-oscuro);
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.form-input {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--gris-borde);
    border-radius: var(--radio-md);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transicion);
    background: var(--blanco);
    color: var(--negro-texto);
}

.form-input:focus {
    outline: none;
    border-color: var(--amarillo-mostaza);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

.form-input:read-only {
    background: var(--gris-claro);
    color: var(--gris-texto);
    cursor: default;
}

.form-input::placeholder {
    color: #9CA3AF;
}

textarea.form-input {
    resize: vertical;
    min-height: 80px;
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

/* ============================================
   BOTONES
   ============================================ */
.btn {
    padding: 10px 22px;
    border-radius: var(--radio-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transicion);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primario {
    background: var(--amarillo-mostaza);
    color: var(--blanco);
}

.btn-primario:hover {
    background: var(--amarillo-hover);
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.3);
}

.btn-secundario {
    background: var(--blanco);
    color: var(--gris-oscuro);
    border: 2px solid var(--gris-borde);
}

.btn-secundario:hover {
    border-color: var(--gris-medio);
    background: var(--gris-claro);
}

.btn-peligro {
    background: var(--blanco);
    color: var(--rojo-error);
    border: 2px solid var(--rojo-error);
}

.btn-peligro:hover {
    background: var(--rojo-error);
    color: var(--blanco);
}

.btn-exito {
    background: var(--verde-exito);
    color: var(--blanco);
}

.btn-exito:hover {
    background: #047857;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.82rem;
}

.btn-lg {
    padding: 14px 30px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* ============================================
   TABLAS
   ============================================ */
.tabla-container {
    overflow-x: auto;
    border-radius: var(--radio-md);
    border: 1px solid var(--gris-borde);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

table thead th {
    background: var(--gris-claro);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--gris-texto);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--amarillo-mostaza);
    white-space: nowrap;
}

table tbody td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--gris-borde);
    color: var(--gris-oscuro);
}

table tbody tr:last-child td {
    border-bottom: none;
}

table tbody tr:hover {
    background: var(--gris-claro);
}

/* ============================================
   BADGES
   ============================================ */
.badge {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: var(--radio-sm);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.badge-verde {
    background: var(--verde-fondo);
    color: var(--verde-texto);
}

.badge-rojo {
    background: var(--rojo-fondo);
    color: var(--rojo-texto);
}

.badge-azul {
    background: var(--azul-fondo);
    color: var(--azul-texto);
}

.badge-amarillo {
    background: var(--amarillo-fondo);
    color: var(--amarillo-hover);
}

/* ============================================
   ALERTAS
   ============================================ */
.alerta {
    padding: 14px 18px;
    border-radius: var(--radio-md);
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alerta-exito {
    background: var(--verde-fondo);
    color: var(--verde-texto);
    border-left: 4px solid var(--verde-exito);
}

.alerta-error {
    background: var(--rojo-fondo);
    color: var(--rojo-texto);
    border-left: 4px solid var(--rojo-error);
}

.alerta-info {
    background: var(--azul-fondo);
    color: var(--azul-texto);
    border-left: 4px solid var(--azul-info);
}

/* ============================================
   MODALES
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
}

.modal-overlay.activo {
    display: flex;
}

.modal-contenido {
    background: var(--blanco);
    border-radius: var(--radio-lg);
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--sombra-lg);
    animation: fadeIn 0.2s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gris-borde);
}

.modal-titulo {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--negro-texto);
}

.modal-cerrar {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gris-texto);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transicion);
}

.modal-cerrar:hover {
    background: var(--gris-claro);
    color: var(--negro-texto);
}

/* ============================================
   BÚSQUEDA
   ============================================ */
.busqueda-container {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.busqueda-input-wrapper {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.busqueda-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gris-borde);
    border-radius: var(--radio-md);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transicion);
}

.busqueda-input:focus {
    outline: none;
    border-color: var(--amarillo-mostaza);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

/* ============================================
   ESTADÍSTICAS
   ============================================ */
.stat-card {
    background: var(--blanco);
    padding: 22px;
    border-radius: var(--radio-lg);
    box-shadow: var(--sombra-xs);
    border: 1px solid var(--gris-borde);
    border-bottom: 3px solid var(--amarillo-mostaza);
}

.stat-label {
    font-size: 0.78rem;
    color: var(--gris-texto);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-weight: 600;
}

.stat-valor {
    font-size: 2rem;
    font-weight: 700;
    color: var(--negro-texto);
}

/* ============================================
   CHECKBOX
   ============================================ */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radio-md);
    transition: var(--transicion);
    cursor: pointer;
}

.checkbox-container:hover {
    background: var(--gris-claro);
}

.checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--amarillo-mostaza);
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-container label {
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gris-oscuro);
    line-height: 1.4;
}

/* ============================================
   UTILIDADES
   ============================================ */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--gris-texto); }
.text-uppercase { text-transform: uppercase; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

.mt-0 { margin-top: 0; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-10 { gap: 10px; }
.gap-15 { gap: 15px; }
.gap-20 { gap: 20px; }
.flex-1 { flex: 1; }
.flex-wrap { flex-wrap: wrap; }

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
}

/* ============================================
   ANIMACIONES
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 0.25s ease;
}

.slide-in {
    animation: slideIn 0.25s ease;
}

/* ============================================
   RESPONSIVE - TABLETS
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --sidebar-ancho: 220px;
    }
    
    .main-content {
        padding: 20px;
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   RESPONSIVE - SIDEBAR COLAPSADO (SOLO ICONOS)
   ============================================ */
@media (max-width: 768px) {
    :root {
        --sidebar-ancho: var(--sidebar-ancho-mini);
    }
    
    .sidebar {
        width: var(--sidebar-ancho-mini);
    }
    
    /* Ocultar textos, mantener iconos */
    .sidebar-titulo-principal,
    .sidebar-titulo-secundario,
    .sidebar-link span,
    .sidebar-seccion,
    .sidebar-user-info,
    .sidebar-logout span,
    .sidebar-logo {
        display: none;
    }
    
    /* Ajustar header */
    .sidebar-header {
        justify-content: center;
        padding: 15px 5px;
        border-bottom: none;
        margin-bottom: 4px;
    }
    
    .sidebar-logo-placeholder {
        width: 34px;
        height: 34px;
        border-radius: var(--radio-sm);
    }
    
    /* Ajustar links */
    .sidebar-link {
        justify-content: center;
        padding: 12px 8px;
        margin: 2px 6px;
        gap: 0;
    }
    
    .sidebar-link-activo {
        border-left: none;
        padding-left: 8px;
    }
    
    .sidebar-icon {
        width: 22px;
        height: 22px;
    }
    
    /* Ajustar footer */
    .sidebar-footer {
        padding: 10px 5px;
        background: transparent;
        border-top: 1px solid var(--gris-borde);
    }
    
    .sidebar-user {
        justify-content: center;
        padding: 4px;
        margin-bottom: 6px;
    }
    
    .sidebar-user-avatar {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }
    
    .sidebar-logout {
        justify-content: center;
        padding: 8px;
        gap: 0;
    }
    
    .sidebar-divider {
        margin: 4px 8px;
    }
    
    .sidebar-seccion {
        display: none;
    }
    
    /* Ajustar contenido */
    .main-content {
        margin-left: var(--sidebar-ancho-mini);
        padding: 15px;
    }
    
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .busqueda-container {
        flex-direction: column;
    }
    
    .modal-contenido {
        max-width: 95%;
        padding: 20px;
    }
}

/* ============================================
   RESPONSIVE - MÓVILES PEQUEÑOS
   ============================================ */
@media (max-width: 480px) {
    .main-content {
        padding: 10px;
    }
    
    .card {
        padding: 15px;
    }
    
    .card-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    table thead th,
    table tbody td {
        padding: 8px 10px;
        font-size: 0.78rem;
    }
    
    .login-card {
        padding: 25px 20px;
    }
    
    .login-titulo {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .stat-valor {
        font-size: 1.5rem;
    }
}

/* ============================================
   IMPRESIÓN
   ============================================ */
@media print {
    .sidebar,
    .btn,
    form,
    .modal-overlay {
        display: none !important;
    }
    
    .main-content {
        margin-left: 0 !important;
        padding: 0 !important;
    }
    
    .card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}