/* ============================= */
/*        ESTILOS DEL MENÚ       */
/* ============================= */
.menu-container {
    margin-top: 40px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.menu-title {
    background-color: #007bff;
    color: white;
    padding: 12px;
    border-radius: 6px 6px 0 0;
    font-size: 22px;
    font-weight: bold;
}

/* Contenedor de los botones */
.menu-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 20px;
}

/* Estilo de los botones */
.menu-buttons .btn {
    font-size: 16px;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 6px;
    min-width: 200px;
}

/* ============================= */
/* RESPONSIVE                    */
/* ============================= */
@media (max-width: 576px) {
    .menu-buttons {
        flex-direction: column;
        gap: 10px;
    }
}
/* ============================= */
/*      PICKING USUARIOS        */
/* ============================= */
.picking-container {
    margin-top: 80px; /* ✅ Agregado para separar del navbar */
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.picking-title {
    background-color: #007bff;
    color: white;
    padding: 14px;
    border-radius: 6px 6px 0 0;
    font-size: 22px;
    font-weight: bold;
}

/* Campo de entrada */
.picking-input {
    width: 50%;
    margin: 20px auto; /* ✅ Espaciado mejorado */
    text-align: center;
    font-size: 18px;
    padding: 10px;
}

/* Botones */
.picking-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.picking-buttons .btn {
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
}

/* Efecto hover en botones */
.picking-buttons .btn:hover {
    transform: scale(1.05);
}

/* Tabla */
.picking-table {
    width: 100%;
    margin-top: 10px;
    border-radius: 6px;
    overflow: hidden;
}

.picking-table th {
    text-align: center;
    font-weight: bold;
    background-color: #007bff;
    color: white;
    padding: 12px;
}

.picking-table td {
    text-align: center;
    padding: 12px;
}

.picking-table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Responsivo */
@media (max-width: 768px) {
    .picking-input {
        width: 100%;
    }
    
    .picking-buttons {
        flex-direction: column;
        gap: 10px;
    }
}


/* ============================= */
/*        ESTILOS GENERALES      */
/* ============================= */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

/* ============================= */
/*        NAVBAR SUPERIOR        */
/* ============================= */
.navbar {
    background-color: #007bff;
    height: 60px;
    padding: 10px 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* Navbar Brand (Logo y Nombre) */
.navbar-brand {
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

/* Navbar Links */
.navbar-nav .nav-link {
    color: white;
    margin: 0 10px;
    transition: 0.3s ease-in-out;
    display: flex;
    align-items: center;
    font-size: 18px;
}

/* Íconos en el Navbar */
.navbar-nav .nav-link i {
    font-size: 20px;
    margin-right: 8px;
}

/* Efecto hover */
.navbar-nav .nav-link:hover {
    color: #f8f9fa;
    transform: scale(1.05);
}

/* ============================= */
/*        NAVBAR SUPERIOR        */
/* ============================= */
.navbar {
    background-color: #007bff;
    height: 60px;
    padding: 10px 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* Navbar Brand (Logo y Nombre) */
.navbar-brand {
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

/* Navbar Links */
.navbar-nav {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    color: white;
    font-size: 18px;
    padding: 10px 15px;
    transition: all 0.3s ease-in-out;
}

/* Íconos en el Navbar */
.navbar-nav .nav-link i {
    font-size: 20px;
    margin-right: 8px;
}

/* Efecto hover */
.navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: white;
}

/* ============================= */
/*        NAVBAR SUPERIOR        */
/* ============================= */
.navbar {
    background-color: #007bff;
    height: 60px;
    padding: 10px 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* Navbar Brand (Logo y Nombre) */
.navbar-brand {
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

/* Navbar Links */
.navbar-nav {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    color: white;
    font-size: 18px;
    padding: 10px 15px;
    transition: all 0.3s ease-in-out;
    display: block; /* ✅ Corregido: Asegurar que los enlaces sean visibles */
}

/* Íconos en el Navbar */
.navbar-nav .nav-link i {
    font-size: 20px;
    margin-right: 8px;
}

/* Efecto hover */
.navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: white;
}

/* ============================= */
/*        NAVBAR SUPERIOR        */
/* ============================= */
.navbar {
    background-color: #007bff;
    height: 60px;
    padding: 10px 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* Navbar Brand (Logo y Nombre) */
.navbar-brand {
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

/* Navbar Links */
.navbar-nav {
    display: flex;
    align-items: center;
}

/* Enlaces alineados a la derecha en escritorio */
@media (min-width: 992px) {
    .navbar-nav {
        justify-content: flex-end;
        text-align: right;
    }
}

/* Enlaces centrados en móviles */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(0, 123, 255, 0.95);
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 20px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-radius: 0 0 10px 10px;
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .navbar-nav .nav-link {
        display: block;
        padding: 12px;
        width: 100%;
        text-align: center;
        font-size: 18px;
        font-weight: bold;
    }

    .navbar-nav .nav-link i {
        font-size: 22px;
    }
}


/* ============================= */
/*   MENÚ RESPONSIVO PARA MÓVIL  */
/* ============================= */
@media (max-width: 992px) {
    .navbar-collapse {
        background: rgba(0, 123, 255, 0.95);
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 20px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-radius: 0 0 10px 10px;
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .navbar-nav .nav-link {
        display: block;
        padding: 12px;
        width: 100%;
        text-align: center;
        font-size: 18px;
        font-weight: bold;
    }

    .navbar-nav .nav-link i {
        font-size: 22px;
    }
}



/* ============================= */
/*   CONTENIDO DEL DASHBOARD     */
/* ============================= */
.dashboard-content {
    margin-top: 80px;
    text-align: center;
    padding: 20px;
}

/* ============================= */
/*        TARJETAS (CARDS)       */
/* ============================= */
.card {
    border-radius: 12px;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 20px;
}


/* ============================= */
/*        BOTONES GENERALES      */
/* ============================= */
.btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 6px;
    transition: all 0.3s;
    padding: 10px;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* ============================= */
/*        FORMULARIOS            */
/* ============================= */
.form-control {
    border-radius: 6px;
    padding: 10px;
    border: 1px solid #ccc;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.5);
}

/* ============================= */
/*        LOGIN CONTAINER        */
/* ============================= */
.login-body {
    background: url('/public/img/background.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Contenedor del Login */
.login-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

/* Logo */
.login-logo {
    max-width: 80px;
    margin-bottom: 10px;
}

/* Encabezado */
.login-header h3 {
    font-size: 22px;
    margin-bottom: 5px;
    font-weight: bold;
}

.login-header p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 15px;
}

/* Inputs */
.input-group-text {
    background-color: #007bff;
    color: white;
    border: none;
}

.form-control {
    border-radius: 6px;
    padding: 10px;
    border: 1px solid #ccc;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.5);
}

/* Botón */
.btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 6px;
    transition: all 0.3s;
    padding: 10px;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* ============================= */
/*        ANIMACIONES            */
/* ============================= */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
