/* ===== ESTILOS GLOBALES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0) 50%,
            rgba(0, 0, 0, 0.3) 100%),
        linear-gradient(180deg,
            #0a1628 0%,
            #0d1f3c 25%,
            #132a4a 50%,
            #0d1f3c 75%,
            #0a1628 100%);
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(100, 150, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
    animation: shimmer 15s ease-in-out infinite;
}

@keyframes shimmer {
    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(1%, 0.5%) rotate(1deg);
    }
    50% {
        transform: translate(0, 1%) rotate(0deg);
    }
    75% {
        transform: translate(-0.5%, 0.5%) rotate(-1deg);
    }
}

.main-content {
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* ===== VISTA INICIAL ===== */
.vista-inicial {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    transition: all 0.5s ease;
}

.vista-inicial.oculto {
    display: none !important;
}

/* ===== DIVISIÓN HORIZONTAL ===== */
.horizontal-split {
    width: 100%;
    display: none;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    min-height: 70vh;
    animation: fadeInSplit 0.5s ease forwards;
}

.horizontal-split.active {
    display: grid;
}

@keyframes fadeInSplit {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.part-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 15px;
    min-height: 300px;
}

.part-2 {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 20px 15px;
    min-height: 300px;
}

/* ===== ESTILOS DE COMPONENTES ===== */
.back-button {
    padding: 10px 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 320px;
    text-align: center;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.user-card {
    background: transparent;
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
    padding: 24px 20px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.user-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: 2;
}

.user-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.user-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background: linear-gradient(135deg, #1f3255 0%, #0f1f3a 100%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.user-card:hover .user-avatar {
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

.user-role {
    font-size: 13px;
    font-weight: 500;
    color: #8ec5ff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.06);
    padding: 4px 16px;
    border-radius: 30px;
    border: 1px solid rgba(142, 197, 255, 0.2);
    display: inline-block;
}

.user-func {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.04);
    padding: 14px 16px;
    border-radius: 16px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
    margin-top: 6px;
}

.user-func strong {
    color: #fff;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.user-func span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.user-badge {
    margin-top: 16px;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.06);
    padding: 6px 18px;
    border-radius: 40px;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.user-card.rol-destacado {
    width: 100%;
    max-width: 320px;
    transform: scale(1.05);
    border-color: rgba(142, 197, 255, 0.5);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(142, 197, 255, 0.25);
}

.user-card.rol-destacado .user-avatar {
    transform: scale(1.1);
    border-color: rgba(142, 197, 255, 0.6);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 0 5px rgba(142, 197, 255, 0.15);
}

.user-card.rol-destacado .user-func {
    background: rgba(142, 197, 255, 0.08);
    border-color: rgba(142, 197, 255, 0.2);
}

.user-card.rol-destacado .user-badge {
    background: rgba(142, 197, 255, 0.12);
    border-color: rgba(142, 197, 255, 0.25);
    color: #8ec5ff;
}

.system-card {
    width: 100%;
    max-width: 700px;
    background: transparent;
    backdrop-filter: blur(20px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 18px 35px 22px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
    margin: 0 auto;
}

.system-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    z-index: 2;
}

.system-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.system-logo {
    width: 140px;
    height: auto;
    margin-bottom: 12px;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.system-title {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(180deg, #ffffff 0%, #b8ccff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.users-grid-inicial {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 10px;
}

/* ===== ESTILOS DE PROCESOS ===== */
.procesos-titulo {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(180deg, #ffffff 0%, #b8ccff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.procesos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    flex: 1;
}

.proceso-card {
    background: transparent;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
    padding: 20px 18px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.proceso-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: 2;
}

.proceso-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.proceso-icono {
    font-size: 36px;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.proceso-nombre {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.proceso-descripcion {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.proceso-pasos {
    margin-top: 12px;
    width: 100%;
    text-align: left;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.proceso-pasos li {
    list-style: none;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.proceso-pasos li::before {
    content: "▸";
    color: #8ec5ff;
    font-weight: bold;
}

/* ===== ESTILOS DE DETALLE ===== */
.detalle-container {
    display: none;
    flex-direction: column;
    gap: 20px;
}

.detalle-container.active {
    display: flex;
    animation: fadeInDetail 0.5s ease forwards;
}

@keyframes fadeInDetail {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.detalle-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
}

.detalle-header .back-procesos {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.detalle-header .back-procesos:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.detalle-header .detalle-titulo {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(180deg, #ffffff 0%, #b8ccff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.detalle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    flex: 1;
}

.detalle-card {
    background: transparent;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
    padding: 20px 18px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.detalle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: 2;
}

.detalle-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.detalle-card .card-icono {
    font-size: 28px;
    margin-bottom: 10px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.detalle-card .card-titulo {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.form-campo {
    margin-bottom: 12px;
}

.form-campo label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
    font-weight: 500;
}

.form-campo input,
.form-campo select,
.form-campo textarea {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: white;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-family: inherit;
}

.form-campo input:focus,
.form-campo select:focus,
.form-campo textarea:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
}

.form-campo textarea {
    resize: vertical;
    min-height: 70px;
}

.form-campo select option {
    background: #0a1628;
    color: white;
}

.btn-ver-productos {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(142, 197, 255, 0.12);
    border: 1px solid rgba(142, 197, 255, 0.25);
    border-radius: 10px;
    color: #8ec5ff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 100%;
    text-align: center;
    margin-top: 4px;
}

.btn-ver-productos:hover {
    background: rgba(142, 197, 255, 0.2);
    border-color: rgba(142, 197, 255, 0.4);
    transform: translateY(-2px);
}

.btn-enviar {
    margin-top: 10px;
    padding: 12px;
    background: rgba(142, 197, 255, 0.15);
    border: 1px solid rgba(142, 197, 255, 0.3);
    border-radius: 12px;
    color: #8ec5ff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 100%;
}

.btn-enviar:hover {
    background: rgba(142, 197, 255, 0.25);
    border-color: rgba(142, 197, 255, 0.5);
    transform: translateY(-2px);
}

.controles-lista {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.control-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.control-item .check {
    color: #8ec5ff;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.control-item .control-texto {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.control-item .control-texto strong {
    color: #ffffff;
}

/* ============================================================
   SCROLL PERSONALIZADO PARA LA TABLA DE INVENTARIO
   ============================================================ */
.tabla-scroll {
    overflow-y: auto;
    max-height: 350px;
    margin-top: 10px;
    border-radius: 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(142, 197, 255, 0.4) rgba(255, 255, 255, 0.05);
}

.tabla-scroll::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.tabla-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.tabla-scroll::-webkit-scrollbar-thumb {
    background: rgba(142, 197, 255, 0.4);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.tabla-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(142, 197, 255, 0.7);
    box-shadow: 0 0 15px rgba(142, 197, 255, 0.2);
}

.tabla-scroll::-webkit-scrollbar-corner {
    background: transparent;
}

/* Firefox scrollbar */
.tabla-scroll {
    scrollbar-width: thin;
    scrollbar-color: rgba(142, 197, 255, 0.4) rgba(255, 255, 255, 0.05);
}

/* ============================================================
   FIN SCROLL PERSONALIZADO
   ============================================================ */

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .horizontal-split {
        grid-template-columns: 1fr 1.5fr;
        gap: 20px;
    }
    .procesos-grid,
    .detalle-grid {
        grid-template-columns: 1fr 1fr;
    }
    .system-logo {
        width: 120px;
    }
    .system-title {
        font-size: 26px;
    }
    .users-grid-inicial {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 20px 15px;
    }
    .horizontal-split {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: auto;
    }
    .procesos-grid,
    .detalle-grid {
        grid-template-columns: 1fr;
    }
    .users-grid-inicial {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .system-logo {
        width: 100px;
    }
    .system-title {
        font-size: 22px;
    }
    .user-card.rol-destacado {
        transform: scale(1.02);
    }
    .part-1 .back-button {
        max-width: 100%;
    }
    .user-card.rol-destacado {
        max-width: 100%;
    }
    .procesos-titulo {
        font-size: 20px;
    }
    .detalle-header {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .detalle-header .back-procesos {
        width: 100%;
        text-align: center;
    }
    .tabla-scroll {
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .system-card {
        padding: 14px 16px 16px;
    }
    .system-title {
        font-size: 18px;
    }
    .system-logo {
        width: 80px;
    }
    .user-card {
        padding: 18px 14px 20px;
    }
    .user-avatar {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .user-func {
        font-size: 13px;
        padding: 12px 12px;
    }
    .user-func span {
        font-size: 12px;
    }
    .proceso-card,
    .detalle-card {
        padding: 16px 14px;
    }
    .proceso-icono {
        font-size: 28px;
    }
    .proceso-nombre {
        font-size: 15px;
    }
    .proceso-descripcion {
        font-size: 13px;
    }
    .proceso-pasos li {
        font-size: 12px;
    }
    .part-1 .back-button {
        font-size: 13px;
        padding: 8px 18px;
    }
    .detalle-header .detalle-titulo {
        font-size: 17px;
    }
    .tabla-scroll {
        max-height: 200px;
    }
    .tabla-scroll::-webkit-scrollbar {
        width: 4px;
        height: 4px;
    }
}

/* ============================================================
   ESTILOS PARA MATERIALES (Crear Planificación)
   ============================================================ */
.lista-materiales {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 40px;
    padding: 6px 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px dashed rgba(255, 255, 255, 0.08);
}

.material-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.05);
    gap: 8px;
}

.material-item span:first-child {
    flex: 1;
}

.material-item .btn-eliminar-material {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    font-size: 14px;
    padding: 2px 6px;
    transition: all 0.3s ease;
}

.material-item .btn-eliminar-material:hover {
    color: #eb5757;
}

.btn-agregar-material {
    background: rgba(142, 197, 255, 0.1);
    border: 1px solid rgba(142, 197, 255, 0.2);
    border-radius: 6px;
    color: #8ec5ff;
    font-size: 12px;
    padding: 3px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-agregar-material:hover {
    background: rgba(142, 197, 255, 0.2);
    border-color: rgba(142, 197, 255, 0.4);
}

/* ============================================================
   ESTILOS PARA TABLAS DEL INFORME
   ============================================================ */
.tabla-informe {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

.tabla-informe thead th {
    text-align: left;
    padding: 8px 6px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #8ec5ff;
    font-weight: 600;
    font-size: 12px;
}

.tabla-informe tbody td {
    padding: 6px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.tabla-informe tbody input,
.tabla-informe tbody select {
    width: 100%;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: white;
    font-size: 12px;
    outline: none;
}

.tabla-informe tbody input:focus,
.tabla-informe tbody select:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.tabla-informe .btn-eliminar-fila {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    font-size: 16px;
    padding: 2px 6px;
    transition: all 0.3s ease;
}

.tabla-informe .btn-eliminar-fila:hover {
    color: #eb5757;
}

.btn-agregar-fila {
    background: rgba(142, 197, 255, 0.1);
    border: 1px solid rgba(142, 197, 255, 0.2);
    border-radius: 6px;
    color: #8ec5ff;
    font-size: 12px;
    padding: 4px 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-agregar-fila:hover {
    background: rgba(142, 197, 255, 0.2);
    border-color: rgba(142, 197, 255, 0.4);
}