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

.liana-depositos-frontend-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 30px auto;
    max-width: 850px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
}

/* Decoración sutil en la parte superior */
.liana-depositos-frontend-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    z-index: 10;
}

.liana-depositos-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 0;
}

.liana-depositos-table thead th {
    background-color: #f8fafc;
    color: #475569;
    text-align: left;
    padding: 18px 24px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.08em;
    border-bottom: 2px solid #e2e8f0;
}

.liana-depositos-table tbody td {
    padding: 18px 24px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    vertical-align: middle;
}

.liana-depositos-table tbody tr {
    transition: all 0.25s ease;
    background-color: #ffffff;
}

.liana-depositos-table tbody tr:hover {
    background-color: #f8fafc;
    box-shadow: inset 4px 0 0 #3b82f6;
}

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

/* Estilo para la columna de "Empresa" */
.liana-depositos-table tbody td:first-child {
    font-weight: 600;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Estilo para los números (cuenta y cci) */
.liana-depositos-table tbody td:nth-child(2),
.liana-depositos-table tbody td:nth-child(3) {
    font-family: 'Inter', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 13px;
    color: #475569;
    letter-spacing: 0.03em;
    font-weight: 500;
}

/* Badge sutil para filas sin CCI (N/A) */
.liana-depositos-table tbody td:nth-child(3):empty::before {
    content: '-';
    color: #cbd5e1;
}

/* Responsive */
@media (max-width: 640px) {
    .liana-depositos-table thead {
        display: none;
    }
    .liana-depositos-table tbody tr {
        display: block;
        padding: 16px;
        border-bottom: 8px solid #f1f5f9;
    }
    .liana-depositos-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid #f8fafc;
    }
    .liana-depositos-table tbody td:last-child {
        border-bottom: none;
    }
    .liana-depositos-table tbody td::before {
        content: attr(data-label);
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 600;
        color: #64748b;
    }
}
