        .clearAssign {
            width: auto;
            padding: 15px;
        }

        .medium {
            width: 50%;
        }

        /* Ancho */
        .select2-container {
            width: 300px !important;
            /* !important suele ser necesario */
        }

        /* Altura y alineación del texto */
        .select2-container .select2-selection--single {
            height: 54px !important;
            line-height: 50px !important;
        }

        /* Tamaño de fuente dentro del control */
        .select2-container .select2-selection__rendered {
            font-size: 24px;
            text-align: center !important;
            line-height: 50px !important;
        }

        /* Ajusta la flecha también */
        .select2-container .select2-selection__arrow {
            height: 58px;
        }

        html {
            background: #666666;
        }

        body {
            margin: 5;
        }

        .ui-dialog .ui-dialog-buttonpane {
            display: flex !important;
            justify-content: center;
        }

        .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
            display: flex !important;
            justify-content: space-between;
            gap: .5em;
        }

        .ui-widget-header {
            border: 1px solid #666666;
            background: #9900cc;
            color: #333333;
            font-weight: bold;
        }

        .accordeonContent {
            height: auto !important;
        }

        .tabSelected {
            border: 1px solid #4D0066 !important;
            background-color: #9900cc !important;
        }

        .tabNav {
            background-color: #666666 !important;
            border-bottom-right-radius: 3px;
            border-bottom-left-radius: 3px;
            border-top-right-radius: 3px;
            border-top-left-radius: 3px;
        }

        input[type=text] {
            margin: 8px 0;
            display: inline-block;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
        }

        input[type=submit]:hover {
            background-color: #45a049;
        }

        input[type=submit] {
            width: 50%;
            background-color: #4CAF50;
            color: white;
            padding: 14px 20px;
            margin: 8px 0;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

        button:hover {
            background-color: #45a049;
        }

        button {
            width: 50%;
            background-color: #4CAF50;
            color: white;
            padding: 10px 10px;
            margin: 5px 0;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

        .div-contenedor {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        #accordion {
            zoom: 80%;
        }

        .contenedor {
            width: 100%;
            padding-left: 0px;
            padding-right: 0px;
            margin-left: 0px;
            margin-right: 0px;
            display: flex;
            flex-direction: row;
            gap: 10px;
            overflow-x: none;
        }

        .ui-tabs .ui-tabs-panel {
            padding: 1em 0.2em !important;
        }

        .embed_pdf_wrapper {
            flex-shrink: 0;
            width: 100%;
            overflow-x: auto;
            overflow-y: hidden;
        }

        .embed_pdf {
            min-width: 600px;
            width: auto;
            min-height: 100vh;
            height: auto;
            max-width: none;
            border: none;
        }

        @media (max-width: 1342px) {
            .contenedor {
                overflow-x: auto;
            }
        }

        @media (max-width: 768px) {
            .contenedor {
                flex-direction: column;
            }
        }

        form {
            width: 100%;
        }

        .form-group {
            text-align: center;
        }

        .fb-file-label {
            cursor: pointer;
            background-color: #f0f0f0;
            border: 1px solid #ccc;
            padding: 10px;
            display: inline-block;
        }

        .fb-file-label:hover {
            background-color: #e9e9e9;
        }

        .header {
            background: #aba5ff;
        }


        .fa-camera {
            margin-right: 5px;
        }

        .login {
            width: 100%;
            padding: 12px 20px;
            margin: 8px 0;
            display: inline-block;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
        }

        .select {
            padding: 8px 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .loginS {
            width: 100%;
            background-color: #4CAF50;
            color: white;
            padding: 14px 20px;
            margin: 8px 0;
            border-radius: 4px;
            cursor: pointer;

            border: 0 solid;
            box-shadow: inset 0 0 20px rgba(76, 175, 80, 0);
            outline: 1px solid;
            outline-color: rgba(76, 175, 80, 0);
            outline-offset: 0px;
            text-shadow: none;
            -webkit-transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
            transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
            outline-color: rgba(76, 175, 80, 0.5);
            outline-offset: 0px;
        }

        .loginS:hover {
            background-color: #45a049;


            border: 1px solid;
            box-shadow: inset 0 0 20px rgba(76, 175, 80, 0.5), 0 0 20px rgba(76, 175, 80, 0.2);
            outline-offset: 15px;
            outline-color: rgba(76, 175, 80, 0);
            text-shadow: 1px 1px 2px #427388;
        }

        #botonFiltroQuitar {
            width: 25%;
            background-color: rgb(175, 76, 76);
            color: white;
            padding: 14px 20px;
            margin: 8px 0;
            border-radius: 4px;
            cursor: pointer;

            border: 0 solid;
            box-shadow: inset 0 0 20px rgba(175, 76, 76, 0);
            outline: 1px solid;
            outline-color: rgba(175, 76, 76, 0);
            outline-offset: 0px;
            text-shadow: none;
            -webkit-transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
            transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
            outline-color: rgba(175, 76, 76, 0.5);
            outline-offset: 0px;
        }

        #botonFiltroQuitar:hover {
            background-color: rgb(160, 69, 69);


            border: 1px solid;
            box-shadow: inset 0 0 20px rgba(175, 76, 76, 0.5), 0 0 20px rgba(175, 76, 76, 0.2);
            outline-offset: 15px;
            outline-color: rgba(175, 76, 76, 0);
            text-shadow: 1px 1px 2px #427388;
        }


        .configS {
            width: 25%;
            background-color: #4CAF50;
            color: white;
            padding: 14px 20px;
            margin: 8px 0;
            border-radius: 4px;
            cursor: pointer;

            border: 0 solid;
            box-shadow: inset 0 0 20px rgba(76, 175, 80, 0);
            outline: 1px solid;
            outline-color: rgba(76, 175, 80, 0);
            outline-offset: 0px;
            text-shadow: none;
            -webkit-transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
            transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
            outline-color: rgba(76, 175, 80, 0.5);
            outline-offset: 0px;
        }

        .configS:hover {
            background-color: #45a049;


            border: 1px solid;
            box-shadow: inset 0 0 20px rgba(76, 175, 80, 0.5), 0 0 20px rgba(76, 175, 80, 0.2);
            outline-offset: 15px;
            outline-color: rgba(76, 175, 80, 0);
            text-shadow: 1px 1px 2px #427388;
        }

        .selectConfig {
            padding: 10px 0px;
            font-size: 25 !important;
        }

        #filtros {
            display: flex;
            margin: 10px 0;
            flex-direction: row;
            justify-content: space-evenly;
            align-items: center;
        }

        .contenedorTarifas {
            display: grid;
            justify-content: center;
            grid-template-columns: 40% 40%;
            grid-template-rows: auto;
            gap: 50px;
        }

        .card {
            border: 1px solid #ddd;
            border-radius: 8px;
            width: 350px;
            height: auto;
            text-align: center;
            padding: 20px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            margin: auto;
            margin-top: 50px;
            margin-bottom: 1px;
            align-items: center;
        }

        .card img {
            height: 90px;
            margin-bottom: 10px;
        }

        .card .title {
            font-size: 1.2em;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .card .price {
            font-size: 2em;
            margin: 10px 0;
            color: #333;
        }

        .card .savings {
            color: #888;
            margin-bottom: 20px;
        }

        .card .savingsA {
            font-size: 1.5em;
            margin-bottom: 5px;
            color: #888;
        }

        .card .percent {
            font-size: 1em;
            margin-bottom: 5px;
            color: #888;
        }

        .card button {
            background-color: #e74c3c;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1em;
        }

        .labelFile {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            background-color: #106BA0;
            display: inline-block;
            transition: all .5s;
            cursor: pointer;
            padding: 15px 40px !important;
            text-transform: uppercase;
            width: fit-content;
            text-align: center;
        }

        .buttonfac {
            width: 100%;
            background-color: #4CAF50;
            color: #326f37;
            padding: 10px 10px;
            margin: 0px 0;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .buttonfac:hover {
            background-color: #a8af4c;
            color: #666f32;
        }

        .disabled {
            background-color: #91c4e3;
            pointer-events: none;
        }

        .disabled2 {
            background-color: #98ef9b;
            pointer-events: none;
        }

        label {
            margin-bottom: .25rem;
            margin-top: .25rem;
            margin-left: 1;
            margin-right: 1;
        }

        .checkbox-container {
            display: flex;
            align-items: center;
            color: #ecb2ff;
        }

        .label-text {
            margin-left: 10px;
            font-family: Arial, sans-serif;
            font-size: 16px;
            color: #333;
        }

        .switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 30px;
        }


        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 30px;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 24px;
            width: 24px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }

        input:checked+.slider {
            background-color: #4caf50;
        }

        input:checked+.slider:before {
            transform: translateX(30px);
        }

        @media (max-width: 900px) {
            .contenedorTarifas {
                grid-template-columns: minmax(100px, 1fr);
            }
        }

        #logoutBtn {
            display: inline-block;
            padding: 0.5em 1em;
            text-decoration: none;
            color: #333;
            border: 1px solid #ccc;
            border-left: none;
            border-radius: 0 3px 0 0;
            background: #f9f9f9;
            cursor: pointer;
        }

        #logoutBtn {
            margin-left: auto;
        }

        #logoutBtn:hover {
            background: #eee;
        }

        .pista-config {
            position: relative;
            display: inline-block;
        }

        .info-icon {
            background-color: #3498db;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            line-height: 20px;
            text-align: center;
            font-weight: bold;
            font-family: sans-serif;
            cursor: default;
            display: inline-block;
            font-size: 14px;
        }

        .pista-texto {
            visibility: hidden;
            width: 300px;
            /* Ancho del cuadro de texto */
            background-color: #333;
            color: #fff;
            text-align: left;
            padding: 8px;
            border-radius: 4px;

            /* Posicionamiento */
            position: absolute;
            top: 125%;
            /* Aparece encima del icono */
            left: -500%;
            transform: translateX(-50%);

            /* Para efecto fade-in */
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 10;
        }

        .pista-config:hover .pista-texto {
            visibility: visible;
            opacity: 1;
        }

        .icon-status {
            width: 16px;
            height: auto;
            vertical-align: middle;
            margin-left: 4px;
        }