/* app css stylesheet */
body {
    background-color: #333;
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 16px;
    font-weight: bold;
    background: #eee;
    border: 1px solid #ccc;
    border-left: 0;
    display: flex;
    align-items: center;
}

.panel-default {
    border-color: #ddd;
}

.panel-heading {
    background-color: #f5f5f5;
    font-weight: bold;
}

.text-success {
    color: green;
}

.text-danger {
    color: red;
}

.organigrama * {
    margin: 0px;
    padding: 0px;
}

.nowrap {
    white-space: pre-wrap;
    word-wrap: break-word;
}

.organigrama ul {
    padding-top: 20px;
    position: relative;
}

.modal-body {
    word-break: break-all;
}

.organigrama li {
    float: left;
    text-align: center;
    list-style-type: none;
    padding: 20px 5px 0px 5px;
    position: relative;
}

    .organigrama li::before, .organigrama li::after {
        content: '';
        position: absolute;
        top: 0px;
        right: 50%;
        border-top: 1px solid #f80;
        width: 50%;
        height: 20px;
    }

    .organigrama li::after {
        right: auto;
        left: 50%;
        border-left: 1px solid #f80;
    }

    .organigrama li:only-child::before, .organigrama li:only-child::after {
        display: none;
    }

    .organigrama li:only-child {
        padding-top: 0;
    }

    .organigrama li:first-child::before, .organigrama li:last-child::after {
        border: 0 none;
    }

    .organigrama li:last-child::before {
        border-right: 1px solid #f80;
        -webkit-border-radius: 0 5px 0 0;
        -moz-border-radius: 0 5px 0 0;
        border-radius: 0 5px 0 0;
    }

    .organigrama li:first-child::after {
        border-radius: 5px 0 0 0;
        -webkit-border-radius: 5px 0 0 0;
        -moz-border-radius: 5px 0 0 0;
    }

.organigrama ul ul::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    border-left: 1px solid #f80;
    width: 0;
    height: 20px;
}

.organigrama li a {
    border: 1px solid #f80;
    padding: 1em 0.75em;
    text-decoration: none;
    color: #333;
    background-color: rgba(255,255,255,0.5);
    font-family: arial, verdana, tahoma;
    font-size: 0.85em;
    display: inline-block;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    transition: all 500ms;
}

    .organigrama li a:hover {
        border: 1px solid #fff;
        color: #ddd;
        background-color: rgba(255,128,0,0.7);
        display: inline-block;
    }

.organigrama > ul > li > a {
    font-size: 1em;
    font-weight: bold;
}

.organigrama > ul > li > ul > li > a {
    width: 8em;
}

.table-wrapper-2 {
    display: block;
    max-height: 300px;
    overflow-y: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.menu {
    list-style: none;
    border-bottom: 0.1em solid black;
    margin-bottom: 2em;
    padding: 0 0 0.5em;
}

    .menu:before {
        content: "[";
    }

    .menu:after {
        content: "]";
    }

    .menu > li {
        display: inline;
    }

        .menu > li:before {
            content: "|";
            padding-right: 0.3em;
        }

        .menu > li:nth-child(1):before {
            content: "";
            padding: 0;
        }

.head {
    position: relative;
    z-index: 1;
    margin-top: 10px;
    height: 170px;
}

.pt-3-half {
    padding-top: 1.4rem;
}

.head .hbg {
    position: absolute;
    top: 0px;
    left: 0px;
    background: url('../../../img/procesos.png');
    background-size: cover;
    opacity: 0.3;
    z-index: -1;
    width: 100%;
    height: 100%;
}

/*
 * Style tweaks
 * --------------------------------------------------
 */
body {
    padding-top: 50px;
    padding-bottom: 70px;
}
/*body {
  padding-top: 50px;
  padding-bottom: 70px;
  background-image: url(images/background-photo.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color:#464646;
}*/

/* For mobile devices */
@media only screen and (max-width: 767px) {
    body {
        background-image: url(images/background-photo-mobile-devices.jpg);
    }
}

footer {
    padding-left: 15px;
    padding-right: 15px;
}

/*
 * Off Canvas
 * --------------------------------------------------
 */
@media screen and (max-width: 768px) {
    .row-offcanvas {
        position: relative;
        -webkit-transition: all 0.25s ease-out;
        -moz-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    .row-offcanvas-left .sidebar-offcanvas {
        left: -50%;
    }

    .row-offcanvas-left.active {
        left: 50%;
    }

    .sidebar-offcanvas {
        position: absolute;
        top: 0;
        width: 50%;
        margin-left: 12px;
    }
}


/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
    height: 500px;
    margin-bottom: 60px;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
    z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel .item {
    height: 500px;
    background-color: #777;
}

.carousel-inner > .item > img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    height: 500px;
}

/*
 * Smart table
 * --------------------------------------------------
 */
.smart-table-data-row.selected {
    background: darkgray;
}

.sort-ascent:before {
    content: "\25B4";
}

.sort-descent:before {
    content: "\25BE";
}

.pagination {
    text-align: center;
    cursor: pointer;
}

.smart-table th {
    width: 120px;
    padding: 0 20px;
}

/*
 * Header Modal
 * --------------------------------------------------
 */
.modal-header-info {
    padding: 9px 15px;
    border-bottom: 1px solid #eee;
    background-color: #95db7e;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-size: 60px;
    margin: 10;
    color: green;
    font-family: "Arial", cursive;
}

.modal-body-info {
    font-size: 40px;
    font-family: "Arial", cursive;
}

.modal-header-error {
    padding: 9px 15px;
    border-bottom: 1px solid #eee;
    background-color: #f6636b;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-size: 60px;
    margin: 10;
    color: #c10813;
    font-family: "Arial", cursive;
}

.modal-header-warning {
    padding: 9px 15px;
    border-bottom: 1px solid #eee;
    background-color: #e8dd13;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-size: 60px;
    margin: 10;
    color: white;
    font-family: "Arial", cursive;
}

/*
 * Tables
 * --------------------------------------------------
 */
table {
    border-collapse: separate;
    border-spacing: 0 5px;
}

thead th {
    background-color: #305DB8;
    color: white;
}

tbody td {
    background-color: #EEEEEE;
}

tr td:first-child,
tr th:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

tr td:last-child,
tr th:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

tr:hover {
    cursor: pointer;
}

.table-hover > tbody > tr:hover > td, .table-hover > tbody > tr:hover > th {
    /*background-color: #550055;
    color: #eeeeee;*/
    background-color: #def0d8;
    color: #202020;
}

/*
 * Footer
 * --------------------------------------------------
 */
#footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    /* Set the fixed height of the footer here */
    height: 60px;
    background-color: #f5f5f5;
}

/*
 * Uppper Text
 * --------------------------------------------------
 */
/*input[type=text] {
    text-transform: uppercase;
}*/

/*textarea {
    text-transform: uppercase;
}*/

select {
    text-transform: uppercase;
}

option {
    text-transform: uppercase;
}

span {
    text-transform: capitalize;
}


/*
 * Menu DropDown
 * --------------------------------------------------
 */
/*@media (max-width: 1920px) {
    .navbar-header {
        float: none;
    }

    .navbar-left, .navbar-right {
        float: none !important;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
        max-height: none; 
    }

    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px;
    }

    .navbar-collapse.collapse {
        display: none !important;
    }

    .navbar-nav {
        float: none !important;
        margin-top: 7.5px;
    }

        .navbar-nav > li {
            float: none;
        }

            .navbar-nav > li > a {
                padding-top: 10px;
                padding-bottom: 10px;
            }

    .collapse.in {
        display: block !important;
    }
}*/
/*
 * Login
 * --------------------------------------------------
 */
#register-wraper {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
    margin-top: 25px;
    margin-bottom: 70px;
    padding-top: 25px;
    padding-bottom: 25px;
    background: white;
    text-align: center;
}

/* line 137, ../sass/typica-login.scss */
#register-form {
    margin: 0 auto;
    width: 350px;
}
    /* line 140, ../sass/typica-login.scss */
    #register-form .control-inline {
        display: inline-block;
    }
    /* line 143, ../sass/typica-login.scss */
    #register-form legend {
        margin-bottom: 15px;
        border-bottom: none;
    }
    /* line 147, ../sass/typica-login.scss */
    #register-form input.input-huge {
        width: 318px;
    }
    /* line 150, ../sass/typica-login.scss */
    #register-form .control-group {
        margin-bottom: 0;
    }
    /* line 153, ../sass/typica-login.scss */
    #register-form .checkbox.inline {
        margin-bottom: 10px;
        padding: 0;
        font-size: 98%;
    }
        /* line 157, ../sass/typica-login.scss */
        #register-form .checkbox.inline input {
            margin-right: 10px;
        }
    /* line 161, ../sass/typica-login.scss */
    #register-form .body {
        overflow-y: auto;
        height: auto;
    }
    /* line 165, ../sass/typica-login.scss */
    #register-form .btn {
        padding: 10px 40px;
        background-image: none;
        box-shadow: none;
    }

/* line 171, ../sass/typica-login.scss */
.register-info-wraper {
    background: #fffefe;
}

/* line 174, ../sass/typica-login.scss */
#register-info {
    position: relative;
    text-align: center;
    padding: 25px;
}
    /* line 177, ../sass/typica-login.scss */
    #register-info ul {
        margin-right: 25px;
    }
        /* line 179, ../sass/typica-login.scss */
        #register-info ul li {
            margin-bottom: 25px;
        }

/*`Boton menú izquierdo*/
.menuLeft-btn {
    display: block;
    left: 0;
    position: fixed;
    top: 45%;
}

    .menuLeft-btn a.left {
        display: block;
        border-radius: 0 0 2px 2px;
        /*border: 1px solid #75a3d;*/
        background-color: #757B89;
        color: white;
        font-size: 11px;
        font-weight: normal;
        line-height: 10px;
        margin-left: -20px;
        padding: 25px 5px 5px 5px;
        text-decoration: none;
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
        -webkit-transition: all 0.15s ease-in-out;
        -moz-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
        */
    }

        .menuLeft-btn a.left:hover {
            color: #F4F4F4;
            margin-left: -24px;
            text-decoration: none;
            text-shadow: 0 1px 1px #333333;
            border: 1px solid #75a3d;
            background-color: #6093cc; /* Old browsers */
            background: -moz-linear-gradient(left, #6093cc 0%, #84b6eb 100%); /* FF3.6+ */
            background: -webkit-gradient(linear, left top, right top, color-stop(0%,#6093cc), color-stop(100%,#84b6eb)); /* Chrome,Safari4+ */
            background: -webkit-linear-gradient(left, #6093cc 0%,#84b6eb 100%); /* Chrome10+,Safari5.1+ */
            background: -o-linear-gradient(left, #6093cc 0%,#84b6eb 100%); /* Opera 11.10+ */
            background: -ms-linear-gradient(left, #6093cc 0%,#84b6eb 100%); /* IE10+ */
            background: linear-gradient(to right, #6093cc 0%,#84b6eb 100%); /* W3C */
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6093cc', endColorstr='#84b6eb',GradientType=1 ); /* IE6-9 */
        }

/*Extra Large Modal*/
.modal-extra-lg {
    width: 1100px;
}

/*Wizar*/
/* Latest compiled and minified CSS included as External Resource*/

/* Optional theme */

/*@import url('//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-theme.min.css');*/
body {
    margin-top: 30px;
}

.stepwizard-step p {
    margin-top: 0px;
    color: #666;
}

.stepwizard-row {
    display: table-row;
}

.stepwizard {
    display: table;
    width: 100%;
    position: relative;
}

.stepwizard-step button[disabled] {
    /*opacity: 1 !important;
    filter: alpha(opacity=100) !important;*/
}

.stepwizard .btn.disabled, .stepwizard .btn[disabled], .stepwizard fieldset[disabled] .btn {
    opacity: 1 !important;
    color: #bbb;
}

.stepwizard-row:before {
    top: 14px;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 100%;
    height: 1px;
    background-color: #ccc;
    z-index: 0;
}

.stepwizard-step {
    display: table-cell;
    text-align: center;
    position: relative;
}

.btn-circle {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 10px;
    line-height: 1.428571429;
    border-radius: 15px;
}

#tblplanesaten th, #tbllistaaudfac td {
    padding: 4px !important; /* Reduce el espacio interno */
    line-height: 1 !important; /* Reduce la altura de la línea */
    vertical-align: middle !important; /* Asegura alineación central */
}

#tbllistaaudfac a {
    padding: 0 !important;
    font-size: small !important;
    display: inline-block !important;
}

#tbllistaaudfac input[type="checkbox"] {
    width: 14px;
    height: 14px;
    margin: 0 !important;
    vertical-align: middle !important;
}

#tbllistaaudfac td {
    white-space: nowrap;
}

#tbllistaaudfac thead tr {
    height: 30px !important; /* Ajusta la altura del encabezado */
}

#tbllistaaudfac th {
    padding: 4px !important; /* Reduce el espacio interno */
    line-height: 1 !important; /* Reduce la altura de la línea */
    vertical-align: middle !important; /* Asegura alineación central */
    font-size: small !important; /* Tamaño de fuente pequeño */
    white-space: nowrap; /* Evita que el texto haga saltos de línea */
}
/* Ajustar los combos de filtrado */
.table-responsive select.form-control {
    font-size: 12px; /* Letra más pequeña */
    height: 22px !important; /* Reducir altura */
    padding: 2px 5px; /* Ajuste del padding interno */
    line-height: 1; /* Asegurar compactación */
    width: 100%; /* Que se adapten al ancho del th */
}

/* Ajuste de los inputs de texto si se requieren */
.table-responsive input.form-control {
    font-size: 12px; /* Letra más pequeña */
    height: 22px !important; /* Reducir altura */
    padding: 2px 5px; /* Ajuste del padding interno */
    line-height: 1;
}
/* Ajustar altura de las celdas del calendario */
.fc-day {
    height: auto !important;
    min-height: 120px !important;
}

/* Ajustar eventos para que no se corten */
.fc-event {
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow: visible !important;
    height: auto !important;
    min-height: 20px !important;
}

    /* Ajustar contenido de eventos */
    .fc-event .fc-content {
        height: auto !important;
        min-height: auto !important;
        padding: 2px 4px !important;
    }

    /* Ajustar texto de eventos */
    .fc-event .fc-title {
        white-space: normal !important;
        word-wrap: break-word !important;
        line-height: 1.2 !important;
    }

/* Ajustar altura del calendario */
.fc-view-container {
    height: auto !important;
}

.fc-month-view .fc-body {
    height: auto !important;
}
/* Mejorar la apariencia del select */
.enhanced-select {
    border-radius: 4px;
    border: 2px solid #ddd;
    transition: border-color 0.3s ease;
}

    .enhanced-select:focus {
        border-color: #007bff;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
    }

.tipo-info-panel {
    margin-top: 10px;
}

.label-with-icon {
    display: flex;
    align-items: center;
    gap: 5px;
}

    .label-with-icon i {
        color: #007bff;
    }


/* ========================================
  CLAP CSS ESENCIAL PARA SVG Y ELEMENTOS BÁSICOS
   ======================================== */

/* Estilos básicos del body */
/*body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 20px;
}*/

/* Contenedor principal */
/*.container {
    max-width: 1200px;
    margin: 0 auto;
}*/

/* ========================================
   ESTILOS PARA SVG - FLUJO OBSTÉTRICO
   ======================================== */

/* Contenedor del SVG */
.obstetricos-flow-container {
    position: relative;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    padding: 4px;
    margin-bottom: 5px;
    box-shadow: none;
    min-height: 350px;
    width: 100%;
}

.obstetricos-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   ELEMENTOS SVG BÁSICOS
   ======================================== */

/* Cajas/cuadros del flujo */
.box {
    fill: #fff;
    stroke: #9ca3af;
    stroke-width: 1;
}

/* Etiquetas de texto */
.label {
    font-size: 10px;
    fill: #111827;
}

/* Flechas/conexiones */
.pipe {
    stroke: #374151;
    stroke-width: 1.5;
}

/* ========================================
   ESTADOS DE VALIDACIÓN PARA CUADROS
   ======================================== */

.box-valid {
    fill: #d4edda !important;
    stroke: #28a745 !important;
    stroke-width: 2px !important;
}

.box-invalid {
    fill: #f8d7da !important;
    stroke: #dc3545 !important;
    stroke-width: 2px !important;
}

.box-warning {
    fill: #fff3cd !important;
    stroke: #ffc107 !important;
    stroke-width: 2px !important;
}

/* ========================================
   ESTADOS DE VALIDACIÓN PARA FLECHAS
   ======================================== */

.pipe-valid {
    stroke: #28a745 !important;
    stroke-width: 3px !important;
}

.pipe-invalid {
    stroke: #dc3545 !important;
    stroke-width: 3px !important;
}

.pipe-warning {
    stroke: #ffc107 !important;
    stroke-width: 3px !important;
}

/* ========================================
   ELEMENTOS INTERACTIVOS SVG
   ======================================== */

/* Checkboxes en SVG */
.chk {
    stroke: #374151;
    stroke-width: 1;
    fill: #fff;
    cursor: pointer;
}

    .chk.sel {
        fill: #fde68a;
        stroke: #b45309;
    }

/* Radio buttons en SVG */
.radio {
    stroke: #374151;
    stroke-width: 1;
    fill: #fff;
    cursor: pointer;
}

    .radio.sel {
        fill: #fde68a;
        stroke: #b45309;
    }

/* ========================================
   RADIO BUTTONS DEL FLUJO OBSTÉTRICO
   ======================================== */

/* Radio buttons personalizados para el flujo obstétrico */
.mark-stroke {
    fill: #f8f9fa;
    stroke: #dee2e6;
    stroke-width: 2;
    cursor: pointer;
}

    .mark-stroke.sel {
        fill: #ffc107;
        stroke: #ffc107;
    }

/* Radio buttons sin color amarillo (para opciones "No") */
.mark-stroke-normal {
    fill: #f8f9fa;
    stroke: #dee2e6;
    stroke-width: 2;
    cursor: pointer;
}

    .mark-stroke-normal.sel {
        fill: #e9ecef;
        stroke: #6c757d;
    }

/* Marcas de verificación para radios */
.mark {
    fill: transparent;
    font-size: 10px;
    fill: #111827;
    pointer-events: none;
}

.mark-stroke.sel + .mark {
    fill: #000000;
}

.mark-stroke-normal.sel + .mark {
    fill: #000000;
}

/* Elementos interactivos con hover */
g[ng-click] {
    cursor: pointer;
}

    g[ng-click]:hover .mark-stroke {
        stroke: #007bff;
        stroke-width: 3;
    }

    g[ng-click]:hover .mark-stroke-normal {
        stroke: #007bff;
        stroke-width: 3;
    }


/* ========================================
   INPUTS Y FORMULARIOS EN SVG
   ======================================== */

.fo {
    font-family: Inter, system-ui, Segoe UI, Roboto, sans-serif;
}

    .fo input {
        width: 100%;
        padding: 4px 6px;
        border: 1px solid #cbd5e1;
        border-radius: 6px;
        font-size: 10px;
    }

/* Texto en SVG */
.txt {
    font-size: 10px;
    fill: #334155;
}

/* ========================================
   RESPONSIVE PARA SVG
   ======================================== */

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .obstetricos-flow-container {
        min-height: 300px;
    }

    .obstetricos-svg {
        height: 250px;
    }
}
/* ======================================== ESTILOS PARA PSICOSOCIAL - hcPsicosocialStandalone.html ======================================== */

/* Estilos para radio buttons tradicionales */
.radio-custom {
    display: inline-block;
    position: relative;
    margin-right: 15px;
    cursor: pointer;
    font-size: 11px;
    font-weight: bold;
    color: #333;
}

    .radio-custom input[type="radio"] {
        margin-right: 5px;
        cursor: pointer;
    }

    .radio-custom .radio-text {
        display: inline-block;
        vertical-align: middle;
    }

    /* Estilo especial para "Vive sola" - radio amarillo cuando se selecciona */
    .radio-custom[name="viveSola"] input[type="radio"]:checked {
        accent-color: #ffc107;
    }

    /* Estilo especial para "Alfabeta" - NO cambiar color del radio */
    .radio-custom[name="alfabeta"] input[type="radio"]:checked {
        accent-color: #007bff;
    }

    /* Estilo especial para "Población Especial" - NO cambiar color del radio */
    .radio-custom[name="poblacionEspecial"] input[type="radio"]:checked {
        accent-color: #007bff !important;
    }

    /* Estilo especial para trimestres - solo "Sí" se pone amarillo */
    .radio-custom input[type="radio"][value="si"]:checked {
        accent-color: #ffc107;
    }

    /* Asegurar que "Población Especial" NO se ponga amarillo */
    .radio-custom[name="poblacionEspecial"] input[type="radio"][value="si"]:checked {
        accent-color: #007bff !important;
    }

    /* Estilo para "No" en trimestres - solo se chequea, no cambia color */
    .radio-custom input[type="radio"][value="no"]:checked {
        accent-color: #007bff;
    }

    /* Hover effects */
    .radio-custom:hover {
        color: #666;
    }

    .radio-custom input[type="radio"]:checked:hover + .radio-text {
        opacity: 0.8;
    }

/* Estilos para contenedores de opciones de radio */
.radio-options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

    .radio-options-container.vertical {
        flex-direction: column;
        align-items: flex-start;
    }

    .radio-options-container.horizontal {
        flex-direction: row;
        align-items: center;
    }

/* Estilos para checkboxes personalizados */
.checkbox {
    margin-bottom: 5px;
}

    .checkbox label {
        font-size: 11px;
        font-weight: normal;
        cursor: pointer;
    }

    .checkbox input[type="checkbox"] {
        margin-right: 5px;
    }

/* Estilos para la tabla de detección de consumo */
.table-radio-container {
    display: flex;
    justify-content: center;
    gap: 5px;
}

    .table-radio-container .radio-custom {
        margin-right: 0;
    }

    .table-radio-container .radio-text {
        font-size: 10px;
        padding: 2px 6px;
        min-width: 35px;
    }

    /* Estilos para radio buttons en tabla - sin cambio de color en labels */
    .table-radio-container .radio-custom input[type="radio"]:checked + .radio-text {
        background-color: transparent;
        color: #333;
        border: none;
    }

/* Estilos para encabezados de tabla */
.table-condensed thead th.warning {
    background-color: #fff3cd !important;
    color: #856404 !important;
}

/* Estilos para botones */
.btn {
    margin: 0 5px;
}

    .btn i {
        margin-right: 5px;
    }

/* Estilos para el panel de debug */
.panel-info .panel-heading {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f;
}

.panel-info .panel-body {
    background-color: #f9f9f9;
}

/* Estilos para el pre del debug */
pre {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 10px;
    font-size: 11px;
    max-height: 300px;
    overflow-y: auto;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .radio-options-container.horizontal {
        flex-direction: column;
        align-items: flex-start;
    }

    .table-responsive {
        font-size: 10px;
    }

    .table-radio-container .radio-text {
        font-size: 9px;
        padding: 1px 4px;
        min-width: 30px;
    }
}

/* Estilos para mejorar la legibilidad */
.form-group {
    margin-bottom: 10px;
}

.control-label {
    font-weight: bold;
    color: #333;
}

/* Estilos para el título principal */
h1 {
    color: #2c3e50;
    margin-bottom: 20px;
}

h4 {
    color: #34495e;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 5px;
}

/* Estilos para el panel principal */
.panel-default {
    border-color: #bdc3c7;
}

.panel-heading {
    background-color: #ecf0f1;
    border-color: #bdc3c7;
}

.panel-title {
    color: #2c3e50;
    font-weight: bold;
}

    .panel-title i {
        margin-right: 8px;
        color: #3498db;
    }
