/* ==============================
   ESTILO GENERAL
   ============================== */
   
   /* ============================== */
/* 🔹 Barra Superior de Navegación */
/* ============================== */

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1); /* Fondo semitransparente */
    backdrop-filter: blur(12px); /* Efecto de vidrio */
    padding-right: 50px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 10px;
    margin-left: 18%;
    margin-top: 55px;
    width: 80%;
    max-width: 97%;
}

.top-bar2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1); /* Fondo semitransparente */
    backdrop-filter: blur(12px); /* Efecto de vidrio */
    padding: 15px 50px; /*  Explicación: 15px → Aplica al top y bottom (arriba y abajo).50px → Aplica a right y left (derecha e izquierda). */
    border-radius: 10px;
    /*margin-left: 18%;*/
    margin: auto;
    margin-top: 55px;
    width: 90%;
    max-width: 90%;
}

/* 🔹 Breadcrumb (Ruta de la página) */
.breadcrumb-container {
    flex: 1;
    text-align: center;
}

.breadcrumb {
    background: transparent;
    display: inline-flex;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8); /* Blanco con 80% de opacidad */
    font-weight: bold;
}

/* 🔹 Iconos de la barra superior */
.top-bar-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.icon-btn i {
    font-size: 18px;
}

/* 🔹 Botón de Cerrar Sesión */
.btn-danger {
    padding: 8px 12px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.btn-danger:hover {
    background: red;
}

   
body {
    font-family: 'Poppins', sans-serif;
    /*background: linear-gradient(135deg, #0F172A, #1E293B);*/
    color: #E5E7EB;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

/* Página completamente visible */
body.loaded {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}

/* Desvanecimiento al cambiar de página */
body.fade-out {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.titulo {
    font-size: 1.9rem; /* Tamaño grande */
    font-weight: 200;  /* Negrita moderada */
    color: white; /* Texto principal en blanco */
    letter-spacing: 1px;
    text-transform: capitalize;
    margin-bottom: 10px;
    /*padding-left: 69px;*/
    text-align: center;
}

/* 🔹 Resaltar una parte del título en azul */
.titulo .resaltado {
    color: #74b9ff; /* Azul brillante */
    font-weight: 500; /* Más grueso */
}

.cajacentrada{
    
    padding-right: 50px;
    padding-left: 50px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 10px;
    margin: 20px auto;
    width: 100%;
    text-align: center;
}

.cajacentrada_compacta{
    text-align: center;
    width: 100%;
    margin: 5px auto;
    padding-bottom: 7px;
}


/* ==============================
   LOGO "ROYCONTROL101"
   ============================== */
.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: blue;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 20px;
    display: inline-block;
}

.logo-text .roy {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-right: 5px;
    text-transform: none; /* Asegura que el texto mantenga su capitalización original */
    margin-right: -1px; /* Reducir el espacio */
}

.logo-text .control {
    font-size: 2.5rem;
    font-weight: 10;
    /*color: #2563EB;*/
    color: #fff;
    margin-right: 5px;
    text-transform: none; /* Asegura que el texto mantenga su capitalización original */
    margin-right: 15px; /* Reducir el espacio */
}

.logo-text .one-o-one {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
}

/* ==============================
   LOGO "ROYCONTROL101 En DashBoards"
   ============================== */
.logo-text0 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: blue;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 20px;
    display: inline-block;
    /*border: solid red 2px;*/
}

.logo-text {
    display: flex; /* 🔥 Asegura que los spans estén en línea sin afectar la altura */
    align-items: center; /* 🔥 Evita que se estiren y mantengan su tamaño natural */
    height: fit-content; /* 🔥 Evita que ocupe más espacio del necesario */
    line-height: 1; /* 🔥 Asegura que el texto no tenga más espacio vertical del necesario */
    padding: 0; /* 🔥 Asegura que no haya relleno extra */
    margin: 0; /* 🔥 Evita márgenes innecesarios */
}

.logo-text2 span {
    display: inline-flex; /* 🔥 Asegura que se comporten como texto sin forzar altura */
    align-items: center; /* 🔥 Los mantiene alineados sin expandir */
}

.logo-text .roy2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    text-transform: none; /* Asegura que el texto mantenga su capitalización original */
    margin-right: 1px; /* Reducir el espacio */
}

.logo-text .control2 {
    font-size: 1.7rem;
    font-weight: 10;
    /*color: #2563EB;*/
    color: #fff;
    text-transform: none; /* Asegura que el texto mantenga su capitalización original */
    margin-right: 15px; /* Reducir el espacio */
}

.logo-text .logo101 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    margin-left: -11px;
}

/* ==============================
   BOTONES DEL HEADER
   ============================== */
.botones-header {
    float: right;
    margin: 20px;
}

.botones-header button {
    background: transparent;
    border: 2px solid #FFFFFF;
    color: white;
    padding: 10px 15px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.botones-header button:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.4);
}

/* ==============================
   FORMULARIO DE LOGIN (GLASSMORPHISM)
   ============================== */
   
/* Fondo principal con efecto neón */
.fondologin {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('software/img/fondologin.jpg') no-repeat center center/cover;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Sección publicitaria con iconos redondos */
.feature-icon {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

/* Botones con borde y transición */
.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    transition: all 0.3s ease-in-out;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.card {
    background: rgba(255, 255, 255, 0.1); /* Fondo semitransparente */
    backdrop-filter: blur(12px); /* Efecto desenfoque */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    color: white;
    width: 350px;
    margin: 50px auto;
    text-align: center;
    transition: all 0.3s ease-in-out; /* Transición suave */
    will-change: transform, box-shadow; /* Optimización de rendimiento */
    transform-origin: center; /* Asegura que el escalado no desplace el elemento */
}

.card:hover {
    box-shadow: 0px 8px 30px rgba(255, 255, 255, 0.2); /* Suaviza la sombra */
}

.card h1 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
}

.card input {
    position: relative;
    width: 100%;
    padding: 12px 40px;
    font-size: 16px;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    color: black; /* Texto dentro del input en negro para contraste */
    outline: none;
}

/* Placeholder en blanco */
.card input::placeholder {
    color: white;
    opacity: 1; /* Asegurar que el color sea visible en todos los navegadores */
}

.card i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
}

.card input:focus {
    border-color: #60A5FA;
    outline: none;
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

.card button {
    background: linear-gradient(90deg, #2563EB, #60A5FA);
    border: none;
    border-radius: 8px;
    padding: 12px;
    width: 100%;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.card button:hover {
    background: linear-gradient(90deg, #60A5FA, #2563EB);
    box-shadow: 0px 5px 15px rgba(0, 0, 255, 0.3);
}

/* RECORDAR CONTRASEÑA */
.remember-forgot {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin: 10px 0;
}

.remember-forgot a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: 0.3s;
}

.remember-forgot a:hover {
    color: #00eaff;
}

/* Tarjeta de login con efecto vidrio */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: 0.3s ease-in-out;
}

.glass-effect:hover {
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}
/* ==============================
   SECCIÓN DE FEATURES
   ============================== */
.feature-section {
    text-align: center;
    margin-top: 50px;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.feature img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}

.feature p {
    font-size: 1rem;
    color: #CBD5E1;
}

/* ==============================
   Dashboard - Admin
   ============================== */
.fondo2-admin {
    position: relative;
    min-height: 100vh;  /* Altura completa */
    height: auto;
    background: url('software/img/fondologin.jpg') no-repeat center center/cover;
    backdrop-filter: blur(20px); /* Glass Effect */
    -webkit-backdrop-filter: blur(20px); /* Compatibilidad con Safari */
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 60px;
    overflow-y: auto;
    z-index: 1;
}

.fondo-admin {
    background: rgba(0, 0, 0, 1.1) url('software/img/fondo-admin.jpg') no-repeat center center/cover;
    /*background: url('software/img/fondo-admin.jpg') no-repeat center center/cover;*/
    /*backdrop-filter: blur(10px);*/
    -webkit-backdrop-filter: blur(20px); /* Compatibilidad con Safari */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* 🔥 Esto mantiene el fondo fijo */
}



@keyframes hazMovimiento {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(30%) translateY(20%); }
}

/* =============================
    Modals
    ============================ */
    
.modal-1 {
    background: rgba(0, 0, 0, 1.1) url('software/img/fondo-admin.jpg') no-repeat center center/cover;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    color: white;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    margin-top: 20px;
}    
   

/* ==============================
   Efecto Glassmorphism para tarjetas
   ============================== */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    /*backdrop-filter: blur(12px);*/
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    color: white;
    width: 98%;
    max-width: 1900px;
    margin: auto;
    text-align: center;
    margin-top: 20px;
}

.glass-card:hover {
    /*transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.1);*/
}

/* ==============================
   Inputs de glasscard en modo glass con blanco
   ============================== */
.glass-card input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    color: white;
    outline: none;
}

/* Placeholder en blanco */
.glass-card input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

/* Botón Glass */
.glass-card button {
    background: linear-gradient(90deg, #2563EB, #60A5FA);
    border: none;
    border-radius: 8px;
    padding: 12px;
    width: 100%;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.glass-card button:hover {
    background: linear-gradient(90deg, #60A5FA, #2563EB);
    box-shadow: 0px 5px 15px rgba(0, 0, 255, 0.3);
}

/* ==============================
   glass-card SELECT
   ============================== */
.glass-card select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    color: white;
    outline: none;
    appearance: none;
}

.glass-card select option {
    color: black;
}

/* ------------------------
        IMPOSTOR
*/
.glass-select {
    width: 100%;
    padding: 11px;
    margin: 16px auto;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 0px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    color: #2563EB;
    outline: none;
}

/* ==============================
   Tarjetas individuales Tool-card
   ============================== */

.tool-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
    width: 100%;
    max-width: 320px; /* Ajusta el tamaño */
    transition: transform 0.3s ease-in-out;
    margin-top: 20px;
}

.tool-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Espaciado entre tarjetas */
.row {
    margin-top: 20px;
}

/* Botón dentro de cada herramienta */
.tool-card .btn-roy-primary {
    background: linear-gradient(90deg, #2563EB, #60A5FA) !important;
    border: none;
    border-radius: 8px;
    padding: 9px;
    margin: 10px auto;
    width: 100%;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.tool-card .btn-roy-primary:hover {
    background: linear-gradient(90deg, #60A5FA, #2563EB) !important;
    box-shadow: 0px 5px 15px rgba(0, 0, 255, 0.3);
}

.btn-roy-success{
    background: linear-gradient(90deg, #198754, #28c76f, #a0eec0) !important;
    border: none;
    border-radius: 8px;
    padding: 1px;
    margin: 1px auto;
    width: 100%;
    color: white;
    font-size: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Botón dentro de cada herramienta */
.tool-card .btn-roy-success{
    background: linear-gradient(90deg, #198754, #28c76f, #a0eec0) !important;
    border: none;
    border-radius: 8px;
    padding: 9px;
    margin: 7px auto;
    width: 100%;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.tool-card .btn-roy-success:hover {
    background: linear-gradient(90deg, #198754, #28c76f, #a0eec0) !important;
    box-shadow: 0px 5px 15px rgba(0, 0, 255, 0.3);
}

/* class para contener botones en una sola fila*/
.tool-card .button-row {
    display: flex;
    gap: 10px; /* Espacio entre botones */
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.tool-card .button-row .btn {
    flex: 1;
    min-width: 100px;
    text-align: center; /* Centra el texto del <a> */
}

/* ==============================
   RESPONSIVIDAD
   ============================== */
@media (max-width: 768px) {
    .glass-card {
        width: 97%;
        padding: 15px;
    }
}


/* ==============================
   SIDEBAR
   ============================== */

.sidebar {
    width: 350px;
    height: 100vh;
    background: transparent !important;
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 33px;
    padding-right: 55px;
    color: white;
    /*border: solid red 2px;*/
    
}

.sidebar-header {
    text-align: center;
    font-size: 1.5em;
    padding-left: 30px;
    margin-bottom: 20px;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    padding-left: 40px;
}

.sidebar-menu li {
    padding: 15px 0;
}

.sidebar-menu li a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.sidebar-menu li a i {
    margin-right: 10px;
}

/* Ajustar contenido al menú */
.content {
    margin-left: 260px;
    padding: 20px;
}

/* Encabezado del dashboard */
.dashboard-header {
    text-align: center;
    color: white;
    padding: 20px;
}

/* Sección de usuarios */
.usuarios-section {
    margin-top: 20px;
    padding: 20px;
    background: #25274d;
    color: white;
    border-radius: 10px;
    text-align: center;
}

.usuarios-buttons a {
    margin: 10px;
}

/* ==============================
   Acordion
   ============================== */
   
/* Eliminar el fondo del acordeón */
.accordion {
    background: transparent !important;
    border: none !important;
}

/* Eliminar fondo de cada item */
.accordion-item {
    background: transparent !important;
    border: none !important;
}

/* Quitar fondo del botón del header */
.accordion-button {
    background: transparent !important;
    color: white !important; /* Cambia el color del texto si es necesario */
    box-shadow: none !important;
    border: none !important;
}

/* Quitar fondo cuando el botón del acordeón está activo */
.accordion-button:not(.collapsed) {
    background: transparent !important;
    color: white !important;
    box-shadow: none !important;
}

/* Quitar fondo del cuerpo del acordeón */
.accordion-body {
    background: transparent !important;
    color: white !important; /* Ajusta el color del texto si es necesario */
    border: none !important;
}

/* Cambiar color de la flecha a blanco */
.accordion-button::after {
    filter: brightness(0) invert(1); /* Hace que la flecha sea blanca */
    transform: rotate(180deg); /* Asegura que al inicio esté apuntando hacia abajo */
    transition: transform 0.3s ease-in-out; /* Agrega una transición suave */
}

/* Asegurar que la flecha apunte hacia abajo cuando está cerrada */
.accordion-button.collapsed::after {
    transform: rotate(0deg);
}

/* Hacer que la flecha gire hacia arriba cuando el acordeón está abierto */
.accordion-button:not(.collapsed)::after {
    transform: rotate(0deg);
}

/* ==============================
   TABLA
   ============================== */
.table-glass {
    width: 100%;
    background: rgba(255, 255, 255, 0.1); /* Fondo semitransparente */
    backdrop-filter: blur(12px); /* Efecto de desenfoque */
    border-radius: 12px; /* Bordes redondeados */
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1); /* Sombra sutil */
    border-collapse: collapse; /* Evita separación entre celdas */
    overflow: hidden; /* Asegura que el contenido no se desborde */
    table-layout: fixed;
}

/* ==========================
   Cabecera de la Tabla 
   ========================== */
.table-glass thead th{
    background: rgba(255, 255, 255, 0.2); /* Un poco más opaco */
    backdrop-filter: blur(14px); /* Un poco más de desenfoque */
    position: sticky;
    top: 0;
    z-index: 10;
}


.table-glass th {
    padding: 12px 16px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    text-align: center;
}

/* ==========================
   Cuerpo de la Tabla 
   ========================== */
.table-glass tbody tr {
    transition: background 0.3s ease-in-out;
}

.table-glass tbody tr:hover {
    background: rgba(255, 255, 255, 0.15); /* Efecto hover */
}

.table-glass td {
    padding: 12px;
    text-align: center;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================
   Última Fila sin Borde 
   ========================== */
.table-glass tbody tr:last-child td {
    border-bottom: none;
}

/* ==============================
   DASHBOARD STYLES
============================== */

/* Espaciado entre secciones */
.dashboard-section {
    margin-bottom: 1rem;
    padding: 2rem;
    /*background: rgba(255, 255, 255, 0.05);
    *border-radius: 12px;
    *backdrop-filter: blur(10px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);*/
}

/* Estilo individual de las tarjetas */
.dashboard-card {
    border-radius: 15px;
    padding: 1.5rem;
    color: white;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    transition: transform 0.3s ease;
    min-height: 120px;
}

.dashboard-card:hover {
    transform: scale(1.03);
}

/* Responsive grid para secciones tipo resumen */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

/* Contenedor de botones de acción */
.acciones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 16px;
    text-align: center;
}

/* Estilo base para los botones de acción */
.accion-boton {
    position: relative;
    display: block;
    text-align: center;
    padding: 25px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-width: 160px;
}

/* Animación al pasar el mouse */
.accion-boton:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Colores según tipo */
.accion-boton.primary {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), #60A5FA); /* Transparencia inicial más sutil */
}

.accion-boton.info {
    background: linear-gradient(45deg, rgba(14, 165, 233, 0.1), #38bdf8); /* Transparencia inicial más sutil */
}

.accion-boton.success {
    background: linear-gradient(45deg, rgba(22, 163, 74, 0.1), #4ade80); /* Transparencia inicial más sutil */
}

.accion-boton.warning {
    background: linear-gradient(45deg, rgba(245, 158, 11, 0.1), #facc15); /* Transparencia inicial más sutil */
}

.accion-boton.danger {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), #ef4444); /* Un rojo más intenso */
}

.accion-boton i {
    display: block;
    margin-bottom: 8px;
}

.accion-boton {
    text-align: center;
    font-weight: bold;
    padding: 20px;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.list-group-item {
    font-size: 0.95rem;
    padding: 10px 15px;
}


.spinner-border {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    vertical-align: text-bottom;
    border: 0.15em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
}
@keyframes spinner-border {
    100% { transform: rotate(360deg); }
}
.d-none { display: none !important; }

/* Footer Pies de pagina*/
.fondofooter{
    background: #36454F;
}

footer .roy2 {
    font-weight: bold;
    color: #87CEEB;
}

footer .control2 {
    font-weight: 300;
    color: #ffffff;
}

footer .logo101 {
    font-weight: bold;
    color: #87CEEB;
}

footer .social-icons i {
    font-size: 1.2rem;
    transition: color 0.3s;
}

footer .social-icons a:hover i {
    color: #00bcd4;
}

/*
    Adquisiciones
*/
.fila-oc {
    cursor: pointer;
    transition: background-color 0.2s;
}
.fila-oc:hover {
    background-color: #e7f5ff;
}

#sugerencias ul {
    max-height: 200px;
    overflow-y: auto;
    margin-top: 5px;
}


/* ==============================
   RESPONSIVIDAD
   ============================== */
@media (max-width: 768px) {
    .botones-header {
        float: none;
        text-align: center;
        margin-top: 20px;
    }

    .logo-text {
        text-align: center;
        display: block;
        font-size: 1.8rem;
    }

    .card {
        width: 90%;
        padding: 20px;
    }

    .feature h3 {
        font-size: 1.3rem;
    }

    .feature p {
        font-size: 0.9rem;
    }
}


