﻿/* Archivo: table-styles.css */

.table-custom {
    width: 100%;
    border-collapse: collapse;
    margin: 0px 0;
    font-size: 1rem;
    color: #333;
}

    .table-custom th {
        background-color: #1f292d;
        color: white;
        padding: 12px 15px;
        text-align: left;
    }

    .table-custom td {
        padding: 12px 15px;
        border-bottom: 1px solid #ddd;
    }

    .table-custom tr:nth-child(even) {
        background-color: #f2f2f2;
    }

    .table-custom thead {
        background-color: #333;
        color: #fff;
    }

    .table-custom tfoot {
        background-color: #4CAF50;
        color: white;
        font-weight: bold;
    }

    .table-custom @media screen and (max-width: 600px) {
        table

{
    width: 100%;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}

th, td {
    padding: 8px;
    text-align: center;
}
}
