html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.title-label {
    font-size: 0.8em;
}

.data-label {
    font-size: 0.9em;
}

.validation-label {
    font-size: 0.7em;
    color:red;
}

.rounded-rectangle {
    border-radius: 15px;
    background-color: #F9F9F9;
    padding: 10px;
    border: 1px solid #808080; /* Opcional: para agregar un borde */
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    padding-left: 20px;
    padding-right: 20px;
}
.rounded-rectangle-simple {
    margin-top: 10px;
    border-radius: 5px;
    background-color: white;
    padding: 10px;
    border: 1px solid #258cfb; /* Opcional: para agregar un borde */
}
.rounded-rectangle-fill {
    margin-top: 10px;
    border-radius: 15px;
    background-color: cyan;
    padding: 10px;
    border: 1px solid #258cfb; /* Opcional: para agregar un borde */
    margin-left: 10px; /* Ajusta el margen izquierdo */
    margin-right: 10px;
}
.rounded-rectangle-simple-interactive {
    margin-top: 10px;
    border-radius: 15px;
    background-color: white; /*#DEF8FF*/
    padding: 10px;
    border: 1px solid #258cfb; /* Opcional: para agregar un borde */
    cursor: pointer;
    margin-left: 10px; /* Ajusta el margen izquierdo */
    margin-right: 10px;
}
.rounded-rectangle-simple-interactive:hover {
    background-color: #BEF1FF; /* Color azul al pasar el cursor */
}
.rectangle-simple-interactive {
    /*margin-top: 10px;*/
    background-color: white; /*#DEF8FF*/
    padding: 5px;
    border: 1px solid #258cfb; /* Opcional: para agregar un borde */
    cursor: pointer;
    /*margin-left: 10px;*/
    /*margin-right: 20px;*/
}

    .rectangle-simple-interactive:hover {
        background-color: #BEF1FF; /* Color azul al pasar el cursor */
}

.square-rectangle {
    /*width: 200px;*/
    /*height: 100px;*/
    margin-left: 10px; /* Ajusta el margen izquierdo */
    margin-right: 10px;
    margin-top: 10px;
    background-color: #F9F9F9;
    padding: 10px;
    border: 1px solid #808080; /* Opcional: para agregar un borde */
    /*box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);*/
}

/* Para las líneas en posiciones impares (1, 3, 5, etc.) */
.col-md-6 .color-alterno:nth-child(odd) {
    background-color: #F0F0F0;
}

/* Para las líneas en posiciones pares (2, 4, 6, etc.) */
.col-md-6 .color-alterno:nth-child(even) {
    background-color: #F9F9F9;
}

.sidebar {
    height: 100vh;
    position: fixed;
    width: 250px;
    background-color: #343a40;
    color: white;
}


        .sidebar a:hover {
            background-color: #495057;
        }

        .sidebar a.active {
            background-color: #495057;
            color: white;
            font-weight: bold;
        }

.main-content {
    margin-left: 250px;
    padding: 20px;
}

.ui-widget-content {
    background: black;
    opacity: .90;
}


.even {
    background-color: #f2f2f2; /* Color de fondo para filas pares */
}
.even:hover {
    background-color: #BEF1FF; /* Color azul al pasar el cursor */
}

.odd {
    background-color: #ffffff; /* Color de fondo para filas impares */
}
.odd:hover {
    background-color: #BEF1FF; /* Color azul al pasar el cursor */
}

/* ==========================================================================
Botones
========================================================================== */
.btn-primary {
    background: rgb(137, 42, 255);
    background: linear-gradient(90deg, rgb(137, 42, 255) 0%, rgb(25, 188, 225) 100%);
    color: #fff !important;
    border: none;
    border-radius: 8px;
}

    .btn-primary:hover {
        background: rgb(25, 188, 225);
        background: linear-gradient(90deg, rgb(25, 188, 225) 0%, rgb(137, 42, 255) 100%);
    }

.btn-secundary {
    background-color: transparent;
    /*background-image: url(../img/bg-btn-secundary.png);*/
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    color: #f00;
    text-wrap: nowrap;
    padding: 0.395rem 1.25rem;
    min-height: 41px;
    border: solid;
    line-height: 1em;
    border-radius: 8px;
}

    .btn-secundary:hover {
        background: rgb(255, 0, 0);
        background: linear-gradient(90deg, rgb(255, 106, 0) 0%, rgb(255, 0, 0) 100%);
        color: #fff;
        border-radius: 8px;
    }

.btn-plano {
    background-color: transparent;
    color: #505050;
    text-wrap: nowrap;
    padding: 0.395rem 1.25rem;
    border: none;
    border-radius: 8px;
}

    .btn-plano:hover {
        color: #408558;
    }

.btn-third {
    background-color: transparent;
    color: #408558;
    text-wrap: nowrap;
    padding: 0.395rem 1.25rem;
    border: solid;
    border-radius: 8px;
}

    .btn-third:hover {
        color: #fff;
        background: #408558;
    }
