﻿.blankInput {
    width:80px;
}

.tabla-blancspace {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    min-width: 400px;
    width: 100%;
    border-radius: 8px 8px 0 0;
    overflow: hidden; /* Para que los bordes redondeados funcionen */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

    .tabla-blancspace thead tr {
        background-color: #009879;
        color: #ffffff;
        text-align: left;
        font-weight: bold;
    }

    .tabla-blancspace th,
    .tabla-blancspace td {
        padding: 12px 15px;
    }

    .tabla-blancspace tbody tr {
        border-bottom: 1px solid #dddddd;
        background-color: white;
    }

        /* Efecto cebra (filas alternas) */
        .tabla-blancspace tbody tr:nth-of-type(even) {
            background-color: #f3f3f3;
        }

        /* Resaltar la última fila */
        .tabla-blancspace tbody tr:last-of-type {
            border-bottom: 2px solid #009879;
        }

        /* Efecto Hover (interactivo) */
        .tabla-blancspace tbody tr:hover {
            background-color: #f1f1f1;
            color: #009879;
            transition: 0.3s;
        }