body {
            font-family: 'Roboto', sans-serif;
        }
        table.table-bordered th,
        table.table-bordered td {
            border: 2px solid  #3E3E91;
        }
        table.table {
        font-size: 12px; /* Ajusta el tamaño según sea necesario */
        font-family: 'Roboto', sans-serif;
        }

        table.table th,
        table.table td {
        padding: 5px; /* Reduce el espaciado interno si es necesario */
        word-wrap: break-word; /* Permite que el texto se divida en varias líneas si es largo */
        white-space: normal; /* Asegura que el texto se pueda ajustar */
        vertical-align: middle !important;
        }
        table.table th {
                background-color: #3E3E91;
                color: white;
            }
        .btn-view {
            background-color: #3E3E91;
            color: white;
        }
        .btn-view:hover {
            background-color: #2c2c70;
            color: white;
        }
        header {
            background-color: #c01945;
            color: white;
            position: relative;
            display: flex;
            align-items: center;
        }
        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        header h1 {
            margin: 0;
        }
        header img {
            height: 100%;
            width: 160px;
            object-fit: cover;
        }
        .encabezado {
            flex: 1;padding:1% 5%;
            text-align: center;
        }
        .logo {
            height: 100%; 
            width: auto;
        }
        .logo > img {
            height: 100%; 
            width: 160px; 
            object-fit: cover; 
            position: absolute; 
            right: 0; 
            top: 0; 
            margin: 0; 
            padding: 0;
        }


        /* Estilos del Formulario */
        .search-form .form-control {
            border-radius: 5px;
        }

        /* Estilos de la Tabla */
        .convenios-table {
            font-size: 12px;
            font-family: 'Roboto', sans-serif;
        }

        .convenios-table th,
        .convenios-table td {
            padding: 5px;
            word-wrap: break-word;
            white-space: normal;
            vertical-align: middle !important;
        }

        .convenios-table th {
            background-color: #3E3E91;
            color: white;
            border: 2px solid #3E3E91;
        }

        .convenios-table td {
            border: 2px solid #3E3E91;
        }

        /* Botones */
        .btn-view {
            background-color: #3E3E91;
            color: white;
        }

        .btn-view:hover {
            background-color: #2c2c70;
            color: white;
        }
        /* login */
        .bodylogin {
            background-color: #f8f9fa;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }
        .login-container {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 400px;
        }
        .form-control {
            padding-left: 2.5rem;
        }
        .input-group-text {
            background: transparent;
            border: none;
        }
        /*new user*/
        .userbody {
            background-color: #f8f9fa;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }
        .usercontainer {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 400px;
        }