﻿
:root {
    --primary-burgundy: #8B1538;
    --secondary-burgundy: #A63446;
    --light-burgundy: #F4E8EB;
    --accent-gold: #D4AF37;
    --background-light: #FAFAFA;
    --white: #FFFFFF;
    --text-dark: #2C2C2C;
    --text-light: #6C757D;
    --sidebar-width: 280px;
    --sidebar-collapsed-width: 70px;
}

.air-view-container {
    display: flex;
    height: 100%;
    min-height: 600px;
    background: linear-gradient(135deg, var(--background-light) 0%, #FDF8F0 100%);
    font-family: 'Montserrat', 'Inter', 'Segoe UI', system-ui, sans-serif;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.15);
}

.air-sidebar {
    width: var(--sidebar-width);
    background: linear-gradient(180deg, var(--primary-burgundy) 0%, var(--secondary-burgundy) 100%);
    color: white;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 4px 0 20px rgba(139, 21, 56, 0.2);
    transition: width 0.3s ease;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    flex-shrink: 0;
}

    .air-sidebar::-webkit-scrollbar {
        width: 6px;
    }

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

    .air-sidebar::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 3px;
    }

        .air-sidebar::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.5);
        }

    .air-sidebar.collapsed {
        width: var(--sidebar-collapsed-width);
    }

.air-sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
    position: relative;
}

.air-sidebar-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.air-sidebar.collapsed .air-sidebar-title {
    justify-content: center;
}

    .air-sidebar.collapsed .air-sidebar-title span {
        display: none;
    }

.air-sidebar-subtitle {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.air-sidebar.collapsed .air-sidebar-subtitle {
    display: none;
}

.air-toggle-btn {
    position: absolute;
    top: 1rem;
    right: -15px;
    background: var(--accent-gold);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

    .air-toggle-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

.air-sidebar-nav {
    padding: 0 0.5rem;
    flex: 1;
}

.air-nav-item {
    margin-bottom: 0.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .air-nav-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
        transition: left 0.6s;
    }

    .air-nav-item:hover::before {
        left: 100%;
    }

    .air-nav-item.active {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .air-nav-item:hover {
        background: rgba(255, 255, 255, 0.1);
    }

.air-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    cursor: pointer;
}

.air-sidebar.collapsed .air-nav-link {
    justify-content: center;
    padding: 1rem 0.5rem;
    gap: 0;
}

.air-nav-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.air-nav-item.active .air-nav-icon {
    background: var(--accent-gold);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.air-nav-text {
    transition: all 0.3s ease;
    flex: 1;
}

.air-sidebar.collapsed .air-nav-text {
    display: none;
}

.air-tooltip {
    position: absolute;
    left: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

    .air-tooltip::before {
        content: '';
        position: absolute;
        right: 100%;
        top: 50%;
        transform: translateY(-50%);
        border: 6px solid transparent;
        border-right-color: rgba(0, 0, 0, 0.9);
    }

.air-sidebar.collapsed .air-nav-item:hover .air-tooltip {
    opacity: 1;
    visibility: visible;
}

.air-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
}

.air-content-header {
    background: white;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #E5E7EB;
    flex-shrink: 0;
}

.air-page-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.air-page-subtitle {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.air-content-area {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(139, 21, 56, 0.2) transparent;
}

    .air-content-area::-webkit-scrollbar {
        width: 8px;
    }

    .air-content-area::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }

    .air-content-area::-webkit-scrollbar-thumb {
        background: rgba(139, 21, 56, 0.3);
        border-radius: 4px;
    }

        .air-content-area::-webkit-scrollbar-thumb:hover {
            background: rgba(139, 21, 56, 0.5);
        }

.air-section-content {
    display: none;
}

    .air-section-content.active {
        display: block;
        animation: fadeInUp 0.4s ease;
    }

@@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.air-content-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.15);
    border: 1px solid rgba(139, 21, 56, 0.1);
    margin-bottom: 2rem;
}

.air-section-title {
    color: var(--primary-burgundy);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .air-section-title i {
        font-size: 1.4rem;
        color: var(--accent-gold);
    }

.air-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.air-info-card {
    background: linear-gradient(135deg, var(--light-burgundy) 0%, rgba(244, 232, 235, 0.5) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 4px solid var(--accent-gold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .air-info-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .air-info-card:hover::before {
        opacity: 1;
    }

    .air-info-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(139, 21, 56, 0.2);
    }

.air-info-label {
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.air-info-value {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.air-data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.air-data-section {
    background: var(--background-light);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #E5E7EB;
}

.air-data-section-title {
    color: var(--primary-burgundy);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .air-data-section-title::before {
        content: '';
        width: 4px;
        height: 20px;
        background: var(--accent-gold);
        border-radius: 2px;
    }

.air-data-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E5E7EB;
}

    .air-data-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

.air-data-label {
    font-weight: 600;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.air-data-value {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    white-space: pre-line;
}

.air-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(40, 167, 69, 0.1);
    color: #28A745;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Responsive Design Mejorado */
@@media (max-width: 992px) {
    .air-sidebar {
        width: var(--sidebar-collapsed-width);
    }

    .air-sidebar-title span,
    .air-sidebar-subtitle,
    .air-nav-text {
        display: none;
    }

    .air-nav-link {
        justify-content: center;
        padding: 1rem 0.5rem;
        gap: 0;
    }

    .air-toggle-btn {
        display: none;
    }
}

@@media (max-width: 768px) {
    .air-view-container {
        height: 100%;
        min-height: 500px;
    }

    .air-content-header {
        padding: 1rem 1.5rem;
    }

    .air-content-area {
        padding: 1.5rem;
    }

    .air-content-card {
        padding: 2rem 1.5rem;
    }

    .air-info-grid {
        grid-template-columns: 1fr;
    }

    .air-data-grid {
        grid-template-columns: 1fr;
    }

    .air-page-title {
        font-size: 1.5rem;
    }

    .air-nav-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    /* CORREGIR: Título móvil debe mantenerse visible */
    .air-sidebar-title {
        font-size: 1.1rem;
        gap: 0.5rem;
    }

    .air-sidebar-subtitle {
        font-size: 0.75rem;
        line-height: 1.3;
    }
}

@@media (max-width: 480px) {
    .air-content-card {
        padding: 1.5rem 1rem;
    }

    .air-page-title {
        font-size: 1.3rem;
    }

    .air-section-title {
        font-size: 1.3rem;
    }

    .air-content-area {
        padding: 1rem;
    }

    .air-nav-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    /* CORREGIR: Asegurar que CNH-0006 sea visible en móvil */
    .air-sidebar-header {
        padding: 1.5rem 1rem;
    }

    .air-sidebar-title {
        font-size: 1rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.25rem;
    }

        .air-sidebar-title span {
            font-size: 0.85rem;
            font-weight: 800;
            color: var(--accent-gold);
        }

    .air-sidebar-subtitle {
        font-size: 0.7rem;
        text-align: center;
        padding: 0 0.5rem;
    }
    /* En móvil, forzar que el título del sidebar siempre sea visible */
    .air-sidebar.collapsed .air-sidebar-title span,
    .air-sidebar.collapsed .air-sidebar-subtitle {
        display: block !important;
    }

    .air-sidebar.collapsed .air-sidebar-title {
        flex-direction: column !important;
    }
}

.air-content-card-header {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-bottom: none;
    padding: 12px 20px;
    border-radius: 6px 6px 0 0;
    font-weight: 600;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #800000; /* color vino */
    box-shadow: 0 2px 6px rgba(128, 0, 0, 0.2);
    margin-bottom: 16px; /* espacio entre header y lo que sigue */
}

    .air-content-card-header i {
        color: #800000;
    }


.titulo-container {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

    .titulo-container h1 {
        color: #8B1538;
        font-size: 2.5rem;
        font-weight: bold;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-bottom: 3px solid #8B1538;
        display: inline-block;
        padding-bottom: 0.5rem;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    }

    .titulo-container h1 {
        color: #8B1538;
        font-size: 2.5rem;
        font-weight: bold;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

.accordion-container {
    margin-bottom: 2rem;
}

/* Item de acordeón */
.accordion-item {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .accordion-item:hover {
        border-color: #002F2A;
        box-shadow: 0 2px 8px rgba(0, 47, 42, 0.1);
    }

/* Header del acordeón (clickeable) */
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    background: #FFFFFF;
    transition: background-color 0.2s ease;
}

    .accordion-header:hover {
        background: #F9FAFB;
    }

/* Título del acordeón */
.accordion-title {
    font-weight: bold;
    font-size: 1rem;
    flex: 1;
    padding-right: 1rem;
}

/* Icono de flecha */
.accordion-icon {
    color: #002F2A;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

/* Acordeón abierto */
.accordion-item.open .accordion-icon {
    transform: rotate(180deg);
}

.accordion-item.open .accordion-header {
    border-bottom: 1px solid #E5E7EB;
}

/* Contenido del acordeón */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    background: #FAFAFA;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.open .accordion-content {
    max-height: 500px;
    padding: 1.5rem;
}

.accordion-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    white-space: pre-line;
}

/* =====================================================
       ESTILOS PARA DOCUMENTO ANEXO
       ===================================================== */

.documento-anexo-section {
    margin: 2rem 0;
}

.documento-label {
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.documento-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
}

    .documento-card:hover {
        border-color: #002F2A;
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
    }

.documento-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.documento-icon {
    font-size: 1.5rem;
    color: #EF4444;
}

.documento-nombre {
    font-size: 0.95rem;
    color: #1F2937;
    font-weight: 500;
}

.documento-ver-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #002F2A;
    font-weight: bold;
    font-size: 0.9rem;
    text-decoration: underline;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

    .documento-ver-btn:hover {
        background: rgba(16, 185, 129, 0.1);
        color: #002F2A;
        text-decoration: none;
    }

    .documento-ver-btn i {
        font-size: 1rem;
    }

/* Section title verde para exención */
.section-title-exc {
    color: #002F2A;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2rem 0 1.5rem 0;
}

/* Estilos responsivos para acordeones */
@@media (max-width: 768px) {
    .accordion-header {
        padding: 0.875rem 1rem;
    }

    .accordion-title {
        font-size: 0.9rem;
    }

    .accordion-content {
        padding: 0 1rem;
    }

    .accordion-item.open .accordion-content {
        padding: 1rem;
    }

    .documento-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .documento-ver-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Alinear comentarios con acordeones */
.section-title-exc,
.section-title {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

/* Estilo de tarjeta para el formulario de comentarios */
#page-template .bg-line-tranparente {
    /*ckground: #FFFFFF;*/
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 1.5rem;
    width: 100%;
    margin-bottom: 1.5rem;
}

/* Estilo de tarjeta para la lista de comentarios */
#page-template .comments-list {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 1.5rem;
    width: 100%;
}

    #page-template .comments-list h4 {
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.1rem;
        color: #1F2937;
    }

    #page-template .comments-list .comment {
        padding: 1rem 0;
        border-bottom: 1px solid #E5E7EB;
    }

        #page-template .comments-list .comment:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

.negritas {
    font-weight: bold !important;
}

    .negritas .required {
        font-weight: normal !important;
    }

.titulo-homologacion {
    color: #434343
}
/* tabla*/
.acciones-container {
    max-width: 100%;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}



/* Header de la tabla */
.acciones-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.acciones-header-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.acciones-counter {
    font-size: 14px;
    color: #666666;
    font-weight: 400;
}

.acciones-counter-number {
    font-weight: 600;
    color: #2C5F5D;
}

/* Wrapper de la tabla */
.acciones-table-wrapper {
    overflow-x: auto;
}

/* Tabla */
.acciones-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
}

.acciones-table-head {
    background-color: #2C5F5D;
}

.acciones-table-header-cell {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    padding: 16px 20px;
    border: none;
}

    .acciones-table-header-cell:first-child {
        border-top-left-radius: 4px;
    }

    .acciones-table-header-cell:last-child {
        border-top-right-radius: 4px;
        text-align: center;
    }

/* Cuerpo de la tabla */
.acciones-table-body {
}

.acciones-table-row {
    border-bottom: 1px solid #E0E0E0;
}

    .acciones-table-row:last-child {
        border-bottom: none;
    }

    .acciones-table-row:hover {
        background-color: #f9fafb;
    }

.acciones-table-cell {
    padding: 20px;
    font-size: 14px;
    color: #333333;
    vertical-align: top;
}

.acciones-table-cell-tipo {
    font-weight: 500;
}

.acciones-table-cell-articulo {
    color: #2C5F5D;
    font-weight: 600;
}

.acciones-table-cell-justificacion {
    line-height: 1.5;
}

.acciones-table-cell-actions {
    text-align: center;
    vertical-align: middle;
}

/* Botón de opciones */
.acciones-btn-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #666666;
    font-size: 18px;
    line-height: 1;
    font-weight: bold;
    border-radius: 4px;
}

    .acciones-btn-menu:hover {
        color: #2C5F5D;
        background-color: #f0f7f7;
    }

    .acciones-btn-menu:focus {
        outline: 2px solid #2C5F5D;
        outline-offset: 2px;
    }

/* Footer con acciones */
.acciones-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #E0E0E0;
}

.acciones-btn-agregar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: white;
    border: 1px solid #2C5F5D;
    border-radius: 4px;
    color: #2C5F5D;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .acciones-btn-agregar:hover {
        background-color: #f0f7f7;
        border-color: #1f4746;
    }

    .acciones-btn-agregar:focus {
        outline: 2px solid #2C5F5D;
        outline-offset: 2px;
    }

.acciones-btn-icon {
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
}

/* Estado vacío */
.acciones-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #666666;
}

.acciones-empty-icon {
    font-size: 48px;
    color: #cccccc;
    margin-bottom: 16px;
}

.acciones-empty-message {
    font-size: 16px;
    margin-bottom: 8px;
}

.acciones-empty-description {
    font-size: 14px;
    color: #999999;
}

/* Responsive */
@media (max-width: 768px) {
    .acciones-container {
        padding: 16px;
    }

    .acciones-table-header-cell,
    .acciones-table-cell {
        padding: 12px;
        font-size: 13px;
    }

    .acciones-header-title {
        font-size: 16px;
    }

    .acciones-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .acciones-btn-agregar {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .acciones-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .acciones-table-header-cell,
    .acciones-table-cell {
        padding: 10px;
        font-size: 12px;
    }
}