﻿    .form-grid-container {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    .form-grid-group {
        width: 90%;
        /*max-width: 1000px;*/ /* Ajusta el ancho máximo según tu diseño */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        background-color: #fff;
        padding: 20px;
        margin: auto;
    }

    .grid-container {
        width: 100%;
        overflow-x: auto; /* Agrega barra de desplazamiento horizontal si es necesario */
    }

    .custom-gridview {
        width: 100%;
        border-collapse: collapse;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        overflow: hidden; /* Para asegurar que el borde redondeado se respete */
    }

    .custom-gridview th, .custom-gridview td {
        padding: 10px;
        text-align: left;
    }

    .custom-gridview th {
        background-color: #5D7B9D;
        color: white;
    }

    .custom-gridview tr:nth-child(even) {
        background-color: #F7F6F3;
    }

    .custom-gridview tr:nth-child(odd) {
        background-color: #fff;
    }

    .custom-gridview tr:hover {
        background-color: #E2DED6;
    }

