body {
    font-family: Arial, Helvetica, sans-serif;
}
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8); /* blanco semitransparente */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
a i {
    margin-right: 5px;
}
.contenedor-botones {
    display: flex;
    justify-content: flex-end;
    /* justify-content: flex-start; */ /* Alinea los botones a la izquierda */
    gap: 10px; /* Espacio entre los botones */
    padding: 10px;
}
.mobile-container {
    max-width: 100%;
    margin: auto;
    background-color: #c3c1c1;
    height: 800px;
    color: black;
    border-radius: 10px;
}

.topnav {
    overflow: hidden;
    background-color: #333;
    position: relative;
}

.topnav #myLinks {
    display: none;
}

.topnav a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
}

.topnav a.icon {
    background: black;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.active {
    background-color: #004276;
    color: white;
}

.menu-item {
    color: white;
    background-color: #004276;
    pointer-events: auto;
    text-decoration: underline;
}

.menu-item.disabled {
    color: gray;
    pointer-events: none;
    text-decoration: none;
    cursor: default;
}
/* Fixed sidenav, full height */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: black; // #004276;
    color: white;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    border: 3px solid #004276; /* borde azul */
}
/*
        .sidenav a {
            padding: 8px 8px 8px 32px;
            text-decoration: none;
            font-size: 25px;
            color: #818181;
            display: block;
            transition: 0.3s;
        }
*/
/* Style the sidenav links and the dropdown button */
.sidenav dropdown-btn {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 20px;
    color: #818181;
    display: block;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
    display: none;
    background-color: #262626;
    padding-left: 8px;
}

/* Optional: Style the caret down icon */
.fa-caret-down {
    float: right;
    padding-right: 8px;
}

.sidenav a:hover {
    color: black;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}
.holiday {
    background: #ef8585;
}

fieldset{
    border: 1px solid gray;
    padding: 5px;
}
legend{
    color: green;
    font-weight: bolder
}

.advise{
    width: 100%;
    margin : 10px auto;
    color: green;
    font-weight: bolder;
    font-size: 14px;
    text-align: center;
}

.success{
    color: #52ad5a;
}

.failure{
    color: #ff0000;
}

.danger{
    color: #ff0000;
}

.warning {
    color: #ff9800;
} /* Orange */

.progress, #img-preview {
    margin-top: 15px;
}

.box {
    width: 250px;
    height: 40px;
    border: 1px solid #999;
    font-size: 18px;
    color: #1c87c9;
    background-color: #eee;
    border-radius: 5px;
    box-shadow: 4px 4px #ccc;
}

.loading {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: fixed;
    display: block;
    opacity: 0.7;
    background-color: #fff;
    z-index: 99;
    text-align: center;
}
::placeholder {
    color: red;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: red;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: red;
}

.select-editable {
    position:relative;
    background-color:white;
    border:none;
    width:120px; height:18px;
}
.select-editable select {
    position:absolute;
    top:0px;
    left:0px;
    font-size:14px;
    border:none;
    width:120px;
    margin:0;
}
.select-editable input {
    position:absolute;
    top:0px;
    left:0px;
    width:100px;
    padding:1px;
    font-size:12px;
    border:none;
}
.select-editable select:focus,
.select-editable input:focus {
    outline:none;
}

.label {
    color: white;
    font-family: Arial;
    padding: 8px;
    width: 60px;
    height: 18px;
}
.label-success {
    color: white;
    background-color: #4CAF50;
    padding: 8px;
    width: 160px;
    height: 18px;
} /* Green */
.label-info {
    color: white;
    background-color: #2196F3;
    padding: 8px;
    width: 160px;
    height: 18px;
} /* Blue */
.label-warning {
    color: white;
    background-color: #ff9800;
    padding: 8px;
    width: 160px;
    height: 18px;
} /* Orange */
.label-danger {
    color: white;
    background-color: #f44336;
    padding: 8px;
    width: 160px;
    height: 18px;
} /* Red */
.label-other {
    background-color: #e7e7e7;
    color: black;
    padding: 8px;
    width: 160px;
    height: 18px;
} /* Gray */
