@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}



/* Tipografía específica para los botones */
.btn-accion, .btn-accion-grande {
    font-family: "Nunito", sans-serif; 
    font-size: 1rem; 
    color: white !important; 
}

.modal-content .btn-accion,
.modal-content .btn-accion-grande {
    font-family: "Nunito", sans-serif; 
    color: white !important; 
}

.modal-content .lupa {
    text-decoration: none !important;
}


.container {
    display: flex; /* Habilitar diseño Flexbox */
    flex-direction: column; /* Organizar elementos verticalmente */
    align-items: center; /* Centrar elementos horizontalmente */
    justify-content: center; /* Centrar elementos verticalmente */
    width: 400px; /* Mantener el ancho */
    margin-top: 20px; /* Aumentar el margen superior */
    margin-bottom: 20px; /* Establecer el tamaño mínimo a cero */
}



.container-grande {
    display: flex; /* Habilitar diseño Flexbox */
    flex-direction: column; /* Organizar elementos verticalmente */
    align-items: center; /* Centrar elementos horizontalmente */
    justify-content: center; /* Centrar elementos verticalmente */
    width: 800px; /* Mantener el ancho */
    margin-top: 20px; /* Aumentar el margen superior */
    margin-bottom: 20px; /* Establecer el tamaño mínimo a cero */
}


.container-pequeño {
    display: flex; /* Habilitar diseño Flexbox */
    flex-direction: column; /* Organizar elementos verticalmente */
    align-items: center; /* Centrar elementos horizontalmente */
    justify-content: center; /* Centrar elementos verticalmente */
    width:auto; /* Mantener el ancho */
    margin-top: 10px; /* Aumentar el margen superior */
    margin-bottom: 10px; /* Establecer el tamaño mínimo a cero */
}

.buttons-pequeño {
    display: flex;
    flex-direction: row;
    width: auto; /* Opcional, ajusta el ancho del contenedor de botones */
    align-items: center;
    justify-content: center; /* Puedes eliminarlo si deseas */
}

.cont-inicio {
    display: flex; /* Habilitar diseño Flexbox */
    flex-direction: column; /* Organizar elementos verticalmente */
    align-items: center; /* Centrar elementos horizontalmente */
    justify-content: center; /* Centrar elementos verticalmente */
    width: 400px; /* Mantener el ancho */
    margin-top: 20px; /* Aumentar el margen superior */
    margin-bottom: 20px; /* Establecer el tamaño mínimo a cero */
}


.buttons {
    display: flex;
    flex-direction: row;
    width: 1000px; /* Opcional, ajusta el ancho del contenedor de botones */
    align-items: center;
    justify-content: center; /* Puedes eliminarlo si deseas */
}



.btn {
    text-decoration: none;
    padding: 5px 10px; /* Reducir padding */
    font-size: 1rem; /* Reducir tamaño de fuente */
    position: relative;
    margin: 5px; /* Reducir margen */
    width: 80px; /* Reducir ancho */
    height: 30px; /* Reducir altura */
}

/*  botón de accion */
.btn-accion {
    color: white;
    background-color: #890010;
    border-radius: 400px;
    box-shadow: 0 0 0 0 rgba(137, 0, 16, 0.5), 0 0 0 0 rgba(137, 0, 16, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    width: 90px; /* ancho */
    height: 40px; /*  altura */
    display: flex; /* Asegurarse de que Flexbox esté habilitado */
    align-items: center; /* Centrar verticalmente */
    justify-content: center; /* Centrar horizontalmente */
    position: relative;
}

.btn-accion::after {
    content: "";
    width: 180px; /* Reducir tamaño del efecto */
    height: 180px; /* Reducir tamaño del efecto */
    position: absolute;
    top: -25px; /* Ajustar posición */
    left: -55px; /* Ajustar posición */
    background: #890010;
    background-image: linear-gradient(to bottom, #890010 0%, #ac9b8a 100%);
    z-index: -1;
    transition: transform 0.5s ease;
    border-radius: 50%; /* Asegurar que el borde sea redondeado */
}

    .btn-accion:hover {
        transform: translate(0, -6px);
        box-shadow: 4px -4px 14px 0 rgba(137, 0, 16, 0.5), -4px 4px 14px 0 rgba(137, 0, 16, 0.5);
    }

    .btn-accion:hover::after {
        transform: rotate(150deg);
    }



.btn-accion-grande {
    color: white;
    background-color: #890010;
    border-radius: 400px;
    box-shadow: 0 0 0 0 rgba(137, 0, 16, 0.5), 0 0 0 0 rgba(137, 0, 16, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    width: 160px; /* ancho */
    height: 40px; /*  altura */
    display: flex; /* Asegurarse de que Flexbox esté habilitado */
    align-items: center; /* Centrar verticalmente */
    justify-content: center; /* Centrar horizontalmente */
    position: relative;
}

    .btn-accion-grande::after {
        color: white;
        font-size: 1rem;
        content: "";
        width: 280px; /* Reducir tamaño del efecto */
        height: 280px; /* Reducir tamaño del efecto */
        position: absolute;
        top: -25px; /* Ajustar posición */
        left: -55px; /* Ajustar posición */
        background: #890010;
        background-image: linear-gradient(to bottom, #890010 0%, #ac9b8a 100%);
        z-index: -1;
        transition: transform 0.5s ease;
        border-radius: 50%; /* Asegurar que el borde sea redondeado */
    }

    .btn-accion-grande:hover {
        transform: translate(0, -6px);
        box-shadow: 4px -4px 14px 0 rgba(137, 0, 16, 0.5), -4px 4px 14px 0 rgba(137, 0, 16, 0.5);
    }

        .btn-accion-grande:hover::after {
            transform: rotate(150deg);
        }

/*  botón de Función (ejemplo agregar productos) */
.btn-funcion {
    color: white;
    background-color: #595c72;
    border-radius: 400px;
    box-shadow: 0 0 0 0 rgba(137, 0, 16, 0.5), 0 0 0 0 rgba(137, 0, 16, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    width: 190px; /* ancho */
    height: 40px; /*  altura */
    display: flex; /* Asegurarse de que Flexbox esté habilitado */
    align-items: center; /* Centrar verticalmente */
    justify-content: center; /* Centrar horizontalmente */
    position: relative;
    gap: 10px; /* Espacio entre ícono y texto */
    text-decoration: none; /* Eliminar subrayado del enlace */
    font-size: 18px; /* Tamaño de fuente mayor */
}

    .btn-funcion::after {
        content: "";
        width: 270px; /* Ajustar tamaño del efecto */
        height: 270px; /* Ajustar tamaño del efecto */
        position: absolute;
        top: -50px; /* Ajustar posición */
        left: -50px; /* Ajustar posición */
        background: #890010;
        background-image: linear-gradient(to bottom, #890010 0%, #ac9b8a 100%);
        z-index: -1;
        transition: transform 0.5s ease;
        border-radius: 50%; /* Asegurar que el borde sea redondeado */
    }

    .btn-funcion i {
        font-family: FontAwesome; /* Reemplaza con la fuente de iconos que uses */
        font-size: 24px; /* Tamaño del ícono */
    }

    .btn-funcion:hover {
        transform: translate(0, -6px);
        box-shadow: 4px -4px 14px 0 rgba(137, 0, 16, 0.5), -4px 4px 14px 0 rgba(137, 0, 16, 0.5);
    }

        .btn-funcion:hover::after {
            transform: rotate(150deg);
        }




/* boton excel*/

.btn-excel {
    color: white;
    background-color: #217346; /* Color de fondo de Excel */
    border-radius: 400px;
    box-shadow: 0 0 0 0 rgba(33, 115, 70, 0.5), 0 0 0 0 rgba(33, 115, 70, 0.5); /* Colores de sombra de Excel */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    width: 160px; /* Ancho mayor para incluir ícono y texto */
    height: 40px; /* Altura mayor */
    display: flex; /* Asegurarse de que Flexbox esté habilitado */
    align-items: center; /* Centrar verticalmente */
    justify-content: center; /* Centrar horizontalmente */
    position: relative;
    gap: 10px; /* Espacio entre ícono y texto */
    text-decoration: none; /* Eliminar subrayado del enlace */
    font-size: 18px; /* Tamaño de fuente mayor */
}

    .btn-excel i {
        font-family: FontAwesome; /* Reemplaza con la fuente de iconos que uses */
        font-size: 24px; /* Tamaño del ícono */
    }

    .btn-excel::after {
        content: "";
        width: 230px; /* tamaño del efecto */
        height: 230px; /*  tamaño del efecto */
        position: absolute;
        top: -25px; /* Ajustar posición */
        left: -55px; /* Ajustar posición */
        background: #217346; /* Color de fondo de Excel */
        background-image: linear-gradient(to bottom, #217346 0%, #34a853 100%); /* Gradiente de colores de Excel */
        z-index: -1;
        transition: transform 0.5s ease;
        border-radius: 50%; /* Asegurar que el borde sea redondeado */
    }

    .btn-excel:hover {
        transform: translate(0, -6px);
        box-shadow: 4px -4px 14px 0 rgba(33, 115, 70, 0.5), -4px 4px 14px 0 rgba(33, 115, 70, 0.5); /* Colores de sombra de Excel */
    }

        .btn-excel:hover::after {
            transform: rotate(150deg);
        }


#divUsuarioDetalle {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #fff;
    
}


.user-form {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
}
.privileges {
    width: 50%;
    margin-left: 0%;
    margin-right: 0%;
}

    .user-form h2, .privileges h3 {
        background-color: #ac9b8a;
        color: white;
        font-size: 24px;
        font-family: Arial, sans-serif;
        padding: 8px;
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 4px;
        text-align: center;
    }

    .user-form p {
        color: #ac9b8a;
    }

    .user-form label {
        display: block;
        margin: 5px 0 5px;
    }

    .user-form input, .user-form select {
        width: 100%;
        padding: 10px;
        margin-bottom: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }



.switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #890010; /* Rojo cuando no está activado */
    transition: .4s;
    border-radius: 20px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 12px;
        width: 12px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

input:checked + .slider {
    background-color: #7ec167 /* Verde cuando está activado */
}

    input:checked + .slider:before {
        transform: translateX(14px);
    }




/* Estilos generales del encabezado */
.header {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
}

.header-logo {
    display: flex;
    align-items: center;
    align-self: center;
    background-color: white;
    margin-right: 20px;
   
}

    .header-logo img {
        height: 50px; /* Aumenta la altura del logo */
        cursor: pointer;
    }

.header-nav-container {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

.header-nav {
    display: flex;
    gap: 20px;
}


    .header-nav a {
        text-decoration: none;
        color: black; /* Color de las letras */
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        font-size: 13px; /* Tamaño de la fuente */
        transition: color 0.3s ease;
    }

        .header-nav a:hover {
            color: #89001c; /* Color al pasar el mouse */
        }

        .header-nav a:active {
            color: #89001c; /* Color cuando se selecciona */
        }

/* Estilo del menú desplegable */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #F7F9FC;
    color: black;
    padding: 10px;
    border: none;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

        .dropdown-content a:hover {
            background-color: #f1f1f1;
        }


.dropdown:hover .dropdown-content {
    display: block;
}


.dropdown:hover .dropbtn {
    background-color: #ddd;
}


.active {
    color: #333; 
    position: relative; 
    padding-bottom: 5px;
}

    /* Pseudo-elemento para la franja en la parte inferior del botón activo */
    .active::after {
        content: "";
        position: absolute;
        bottom: 0; 
        left: 0;
        width: 100%; 
        height: 4px; 
        background-color: #890010; 
        border-bottom-left-radius: 4px; 
        border-bottom-right-radius: 4px; 
    }

.grid-container {
    display: flex; /* Habilitar diseño Flexbox */
    flex-direction: column; /* Apilar elementos verticalmente */
    width: 85%; /* Hacer que el contenedor ocupe el ancho disponible */
    margin: 20px auto; /* Agregar margen para espaciado */
}

.grid-container-grande {
    display: flex; /* Habilitar diseño Flexbox */
    flex-direction: column; /* Apilar elementos verticalmente */
    width: 100%; /* Hacer que el contenedor ocupe el ancho disponible */
    margin: 5px auto; /* Agregar margen para espaciado */
}

.grid-container-pequeño {
    display: flex; /* Habilitar diseño Flexbox */
    flex-direction: column; /* Apilar elementos verticalmente */
    width: 50%; /* Hacer que el contenedor ocupe el ancho disponible */
    margin: 20px auto; /* Agregar margen para espaciado */
}

.grid-title {
    text-align: center; /* Centrar el texto del título */
    font-size: 1.5rem; /* Reducir el tamaño de fuente del título */
    margin-bottom: 15px; /* Reducir el espacio debajo del título */
    font-family: "Roboto", sans-serif;
    font-weight: bold; /* Hacer que el texto del título sea negrita */
    font-style: normal;
    color:Black;
}
.grid-title-left {
    text-align: left; /* Centrar el texto del título */
    font-size: 1.5rem; /* Reducir el tamaño de fuente del título */
    margin-bottom: 15px; /* Reducir el espacio debajo del título */
    font-family: "Roboto", sans-serif;
    font-weight: bold; /* Hacer que el texto del título sea negrita */
    font-style: normal;
    color:Black;
}
.grid-panel {
    border: 1px solid #ddd; /* Agregar borde al panel */
    border-radius: 5px; /* Agregar esquinas redondeadas al panel */
    padding: 10px; /* Reducir el relleno dentro del panel */
    background-color: #fff; /* Establecer un color de fondo para el panel */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Agregar sombra para profundidad */
}

.gridview {
    border-collapse: separate; /* Mantener los bordes separados para más espacio */
    width: 90%; /* Hacer que el GridView ocupe el ancho disponible */
    font-size: 0.775rem; /* Reducir el tamaño de fuente de la tabla */
}

    /* Ajustar la primera columna */


.gridview th:first-child, .gridview td:first-child {
    padding: 5px 10px;   /* Ajustar el padding según sea necesario */
    min-width: unset;     /* Eliminar cualquier restricción mínima de ancho */
    max-width: unset;     /* Eliminar cualquier restricción máxima de ancho */
    width: auto;          /* Ajustar el ancho automáticamente al contenido */
    text-align: center;   /* Mantener la alineación centrada */
}

    .gridview th {
        background-color: #ac9b8a;
        font-weight: bold;
        padding: 10px 15px; /* Reducir el padding */
        text-align: center;
        border: 1px solid #ddd; /* Agregar borde a las celdas de encabezado */
        min-width: 120px; /* Establecer ancho mínimo para las columnas */
    }

    .gridview td {
        padding: 10px 15px; /* Reducir el relleno alrededor del contenido de la celda */
        border: 1px solid #ddd; /* Agregar un borde gris claro a las celdas */
        text-align: center; /* Alinear el contenido de la celda a la izquierda */
        min-width: 120px; /* Establecer ancho mínimo para las columnas */
    }

    /* Eliminar padding excesivo */
    .gridview td, .gridview th {
        padding: 8px 10px; /* Reducir el padding */
        min-width: 120px; /* Establecer ancho mínimo para las columnas */
    }


.gridview-header {
    background-color: #ac9b8a;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}

    .gridview .sort-icon {
        margin-left: 5px;
        display: inline-block;
    }

    .gridview .asc .sort-icon::after {
        content: "▲"; /* Flecha ascendente */
        font-size: 0.75rem;
    }

    .gridview .desc .sort-icon::after {
        content: "▼"; /* Flecha descendente */
        font-size: 0.75rem;
    }

.gridview2 {
    border-collapse: collapse;
    width: 90%;
    font-size: 0.775rem;
}

.gridview2 th {
    padding: 5px 10px;
    border: 1px solid #ddd;
    background-color: #ac9b8a;
    font-weight: bold;
    width: auto;
    text-align: center; /* Solo centrar encabezados */
}

.gridview2 td {
    padding: 5px 10px;
    border: 1px solid #ddd;
     /* se comenta text-align: left; Contenido normal a la izquierda */
    width: auto;
}

/* Alinea a la derecha SOLO los que tengan class text-right */
.text-right {
    text-align: right !important;
}


.lupa {
    /* Estilos generales del botón lupa */
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 8px 5px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease; /* Suaviza la transición */
    background: transparent;
    text-decoration: none !important;
}

    /* Aplica el zoom cuando se pasa el mouse por encima */
    .lupa:hover {
        transform: scale(1.6); /* Zoom en el hover */
    }

    /* Icono de lupa dentro del botón */
    .lupa i {
        font-family: FontAwesome; /* Reemplaza con la fuente de iconos que uses */
        font-size: 20px; /* Ajusta el tamaño del ícono */
        color: #89001c; /* Ajusta el color del ícono */
    }

.upload-section {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ddd; /* Border around the section */
    border-radius: 4px; /* Rounded corners */
    background-color: #f9f9f9;
}

    .upload-section label {
        margin-right: 10px;
    }

.file-upload {
    margin-right: 10px;
}



/* SECCION CORREO ELECTRONICO */
.td-texto {
    font-family: sans-serif;
    font-size: 11pt;
    color: black;
}

.td-texto-underline {
    font-family: sans-serif;
    font-size: 11pt;
    color: black;
    text-decoration: underline;
}

.td-texto-negrilla {
    font-family: sans-serif;
    font-size: 11pt;
    color: black;
    font-weight: bold;
}

.td-titulo-negrilla {
    font-family: sans-serif;
    font-size: 11pt;
    color: black;
    font-weight: bold;
}

.td-titulo {
    font-family: sans-serif;
    font-size: 9pt;
    color: white;
    font-weight: bold;
}

.td-titulo-cobertura-negrilla {
    font-family: sans-serif;
    font-size: 9pt;
    color: black;
    font-weight: bold;
}

.td-texto-negrilla-vehiculo {
    font-family: sans-serif;
    font-size: 9pt;
    color: black;
    font-weight: bold;
}

.td-titulo-black {
    font-family: sans-serif;
    font-size: 9pt;
    color: black;
    font-weight: bold;
}

.backcolor-encabezado {
    background-color: #2f5496;
}

.backcolor-detalle {
    background-color: #d9d9d9;
}

.backcolor-detalle-vehiculo {
    background-color: #deeaf6;
}

.firma-tabla {
    width: auto;
    border: 0;
    border-collapse: collapse;
    font: 13px/1.2em sans-serif;
}

.firma-celda {
    font: 13px/1.2em sans-serif;
    padding: 0 10px 0 0;
    vertical-align: top;
    border-right: 2px solid #B33D3D;
}

.firma-celda-imagen {
    margin: 8px 0;
    width: 150px;
}

.firma-celda-texto {
    font-weight: bold;
    text-align: left;
}

.firma-info {
    margin: 8px 0;
}

.firma-info-celda {
    vertical-align: top;
    padding: 8px;
    border: none;
    font: 13px/1.2em sans-serif;
    padding: 0 5px 0 0;
    color: #000000;
}

.firma-info-celda-negrilla {
    font-weight: bold;
}

.firma-redes {
    margin: 8px 0;
    text-align: left;
}

.firma-redes-icono {
    display: inline-block;
    padding-right: 5px;
}

.panelcorreo {
    border: 1px solid #5D7B9D;
    background-color: white;
    overflow: auto;
    top: 5%;
    z-index: 105;
    position: fixed;
    left: 25%;
    right: 25%;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* SECCION MENU DE GRAFICOS */



.menulateral {
    height: auto;
    width: 200px;
    position: fixed;
    top: 24%;
    left: 0;
    background-color: #f8f9fa;
    padding-top: 20px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    z-index: 50;
}

.titulo h2 {
    text-align: center;
    margin: 0;
    padding: 0px;
    color: #333;
    font-weight: bold;

}

.menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

    .menu li {
        padding: 0px;
        text-align: left;
        margin: 5px 0;
    }

        /* Estilo general del botón */
        .menu li a {
            position: relative;
            text-decoration: none;
            color: #333; 
            font-size: 18px;
            display: flex;
            align-items: center;
            padding: 10px 20px;
            width: 100%; /* Asegurar que el botón ocupe el 100% del ancho del contenedor */
            height: auto; /* Asegurar que el botón ocupe el 100% de la altura del contenedor */
            box-sizing: border-box; /* Incluye el padding en el ancho total */
            border-radius: 4px;
            transition: background-color 0.3s, color 0.3s; /* Transición suave en color de fondo */
        }

            /* Cuando el botón está activo */
            .menu li a.active {
                background-color: #ccc; /* Fondo más oscuro cuando el botón está activo */
                color: #333; /* Mantener el color del texto */
            }

                /* Pseudo-elemento para la franja a la derecha del botón activo */
                .menu li a.active::after {
                    content: "";
                    position: absolute;
                    top: 0;
                    right: 0;
                    width: 8px; /* Anchura de la franja a la derecha */
                    height: 100%; /* Asegurar que la franja ocupe toda la altura del botón */
                    background-color: #890010; /* Color de la franja lateral */
                    border-top-right-radius: 4px; /* Redondear la parte superior derecha */
                    border-bottom-right-radius: 4px; /* Redondear la parte inferior derecha */
                }


.icono {
    margin-right: 10px;
}


.content {
    display: flex;
    margin-left: 220px;
    height: 100%;
    margin-top: 20px;
}

.cuestions-form {
    flex: 1; 
    padding: 5px; /* Reducir el padding para ocupar menos espacio */
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
    margin-right: 5px;
    margin-left: 5px;
}
 
.section h2 {
        font-size: 1.0rem; /* Tamaño más pequeño del h2 */
        margin-bottom: 10px; /* Espacio inferior adecuado */
    }

.chart-container {
    flex: 2; /* Ocupa el otro 50% del contenedor padre */
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #ffffff;
    margin-right: 30px;
    margin-left: 30px;
}

.chart-container2 {
    width: 800px; /* Ajustar el tamaño para menos columnas */
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #ffffff;
    margin-right: 50px;
    margin-left: 50px;
}

    .cuestions-form p, .chart-container p {
        color: #ac9b8a;
    }


.cuestions-form input, .cuestions-form select {
    width: 100%; 
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 5px;
}



.cuestions-form table {
    width: 100%;
    border-collapse: collapse;
}

.cuestions-form td {
    padding: 5px; /* Un poco de espacio en las celdas */
    vertical-align: top;
}

.cuestions-form button {
    margin-top: 10px;
}

/* Estilo para los encabezados ordenables sin link */
.sortable-header {
    background-color: #f2f2f2;
    padding: 10px;
    text-align: left; /* Alinear el texto a la izquierda */
    font-family: Arial, sans-serif;
    cursor: pointer;
    position: relative;
    display: inline-block; /* Asegura que el ancho se ajuste */
}

    /* Flecha por defecto: Alineada a la derecha del texto */
    .sortable-header:after {
        content: '▲'; /* Flecha por defecto ascendente */
        font-size: 12px;
        position: absolute;
        right: 10px; /* Alinea la flecha a la derecha */
        top: 50%; /* Centrar verticalmente */
        transform: translateY(-50%); /* Asegura alineación centrada */
    }

    /* Cambiar flecha a descendente cuando se aplique la clase desc */
    .sortable-header.desc:after {
        content: '▼'; /* Flecha descendente */
    }

 .user-info {
        width: 100%; /* Asegura que ocupe todo el ancho */
        display: flex;
        font-size:14px;
        justify-content: flex-end; /* Alinea a la derecha */
       margin-bottom: 1px;  /*Espacio entre la línea de usuario y el menú */
       /*    font-weight: bold; /* Hacer el texto más destacado */
    }

.btnCerrarSesion {
    display: inline-block; /* Mismo comportamiento de botón */
    color: black; /* Texto en color negro */
    font-weight: bold; /* Letras en negrita */
    font-size: 12px; /* Tamaño de fuente como en tu ejemplo */
    padding: 5px 12px;
    background-color: #e0e0e0; /* Fondo suave para el botón */
    text-align: center; /* Centrar el texto */
    width: 110px; /* Ajustar el ancho como en tu ejemplo */
    text-decoration:none;
}

    .btnCerrarSesion:hover {
        background-color: #d0d0d0; /* Cambiar color al pasar el cursor */
    }

.align-right {
    text-align: right;
}
 .panelElegante {
        background-color: #f9f9f9; /* Gris claro de fondo */

        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra suave para dar profundidad */
        border-radius: 10px; /* Bordes redondeados */  
        border: 1px solid #dcdcdc; /* Borde suave de color gris */
        
        padding: 20px; /* Espacio alrededor del contenido */
        width: 90%; /* Ancho adaptable */
        margin: 5px auto; /* Centrado horizontal */

    }

    .panelElegante p {
        line-height: 1.5; /* Espaciado entre líneas */
    }