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;
}

/**//* === Estilo tropical para offcanvas === */
.offcanvas-tropical {
    background-color: #d4edc9; /* Verde lima claro */
    color: #2b8a3e;
}

    /* Título del menú */
    .offcanvas-tropical .offcanvas-title {
        color: #2b8a3e;
        font-weight: bold;
    }

    /* Botón cerrar */
    .offcanvas-tropical .btn-close {
        filter: invert(30%);
    }

    /* Elementos del menú */
    .offcanvas-tropical .list-group-item {
        background-color: transparent;
        color: #2b8a3e;
        font-weight: 500;
        transition: background-color 0.3s ease;
    }

        /* Hover y activo */
        .offcanvas-tropical .list-group-item:hover,
        .offcanvas-tropical .list-group-item:focus {
            background-color: #ffe066;
            color: #2b8a3e;
        }

/* Botón de login/logout */
.navbar .btn-dark {
    background-color: #82c91e;
    border-color: #82c91e;
    color: #fff;
}

    .navbar .btn-dark:hover {
        background-color: #6dab1b;
    }

    /* Estilo para la cabecera Welcome */
h1 {
    font-family: 'Poppins', sans-serif; /* Cambiar la fuente a Poppins */
    font-weight: 300; /* Hacer la fuente más gruesa */
    font-size: 2rem; /* Tamaño más grande para resaltar */
    color: #000f; /* Color verde oscuro (puedes personalizarlo) */
    text-transform: uppercase; /* Para hacerlo más estilizado */
    letter-spacing: 2px; /* Espaciado entre letras */
    text-align: center; /* Centrado */
}

/*Botónes de Buscar y cancelar en - Empleado*/
.btn-orange-light {
    background-color: #ff6a00; /* Anaranjado claro */
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}

    .btn-orange-light:hover {
        background-color: #e65c00; /* Un poco más oscuro al pasar el mouse */
        color: white;
    }

