.author {
    text-decoration: none !important;
}

.img-sm {
    max-width: 30px;
    margin-right: 10px;
}

.table thead tr {
    background-color: #e6e4e4 !important;
    color: #000000 !important;
}

.table thead th {
    border-top-width: 0 !important;
    border-bottom-width: 0 !important;
}

.form-control-checkbox {
    height: 25px;
    width: 25px;
    text-align: center;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.btn {
    border-radius: 0 !important;
}

.dropdown-menu-lg {
    max-width: 300px;
    min-width: 280px;
    padding: 0;
    font-size: 0.90rem;
}

.dropdown-menu-lg .dropdown-item {
    cursor: pointer;
}

.breadcrumb {
    background-color: #f7f7f7;
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
    border: 1px solid #dbd7d7;
}

.breadcrumb a {
    color: #212529 !important;
}

.loading {
    font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    position: absolute;
    top: 36%;
    width: 100%;
}

#product-list .product_card:hover {
    background-color: #28a745 !important;
    color: white !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Estados base del card */
    .table-card {
        background: #ffffff;
        border: 1px solid #f2f4f7 !important;
        transition: all 0.2s ease-in-out;
    }

    .table-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 20px rgba(0,0,0,0.1) !important;
    }

    /* Punto de estado */
    .status-dot {
        height: 12px;
        width: 12px;
        border-radius: 50%;
        display: block;
        border: 2px solid white; /* Le da un borde para que resalte */
    }

    /* ESTE ES EL COLOR AZUL PARA EL ICONO */
    .icon-blue {
        color: #007bff !important; 
    }

    .monitor-wrapper {
        background: #f0f7ff; /* Un fondo azul muy suave para resaltar el icono */
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 20px;
    }

    /* Estilo del Precio */
    .price-text {
        font-size: 1.3rem;
        font-weight: 800;
        color: #1a202c; /* Color oscuro profesional */
    }

    /* Barra de botones lateral */
    .action-vertical-bar {
        position: absolute;
        right: 12px;
        top: 12px;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .btn-action-vertical {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        border: none;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.2s;
    }

    .btn-pay { background: #007bff; }    /* Azul para pago */
    .btn-view { background: #6c757d; }   /* Gris para ver */
    .btn-delete { background: #dc3545; } /* Rojo para borrar */

    .btn-action-vertical:hover {
        transform: scale(1.1);
        filter: brightness(1.1);
        color: white;
    }

    button.btn-category,
    .btn-category.btn {
        background-color: #E68139;
        border-color: #E68139;
        color: #fff;
        border-radius: 50px !important;
        transition: all .2s ease;
    }

    .btn-category:hover {
        background-color: #cf6e2f; /* tono más oscuro para hover */
        border-color: #cf6e2f;
        transform: scale(1.05);
    }

    .btn-category.btn-outline-primary {
        background-color: transparent;
        color: #E68139;
        border-color: #E68139;
    }

    /*tabla modulo barra*/

.table-header-pos th{
    background-color:#E68139;
    color:white;
    font-weight:600;
}

/* contenedor con scroll */
.table-container{
    height:260px;
    overflow-y:auto;
    border:1px solid #dee2e6;
    border-radius:6px;
}

/* header fijo */
#tblProductsBarra thead th{
    position: sticky;
    top:0;
    z-index:1;
}
#tblProductsBarra tbody tr{
    font-size:14px;
}

#tblProductsBarra tbody tr:hover{
    background:#f2f6ff;
}

#tblProductsBarra td{
    padding:8px;
}

.display-6 input{
    border:none;
    background:transparent;
    text-align:center;
    font-weight:bold;
    font-size:32px;
    color:#198754;
}

/* scroll SOLO para productos */
.products-scroll{
    max-height:55vh;
    overflow-y:auto;
    padding-right:5px;
}

/* scrollbar mas suave */
.products-scroll::-webkit-scrollbar{
    width:6px;
}

.products-scroll::-webkit-scrollbar-thumb{
    background:#cfcfcf;
    border-radius:10px;
}

/* efecto hover en productos */
.product_card:hover{
    transform:scale(1.03);
    box-shadow:0 4px 10px rgba(0,0,0,0.15);
    transition:0.2s;
}

/* Card sin stock */
.card-no-stock {
    background-color: #ffe5e5; /* rojo claro */
    border: 1px solid #ffb3b3;
    opacity: 0.85;
    cursor: not-allowed !important;
}

/* Texto dentro del card */
.card-no-stock .card-title,
.card-no-stock .card-text {
    color: #a94442;
}

/* Hover desactivado */
.card-no-stock:hover {
    transform: none !important;
    box-shadow: none !important;
}
/* === Personalización ASLAN POS === */

/* Color de fondo del menú lateral 
.main-sidebar {
  background-color: #f48c5b !important;
}

/* Color de los enlaces del menú 
.main-sidebar .nav-link,
.main-sidebar .brand-text {
  color: #3b1c0d !important; /* tono café oscuro similar al del logo 
}

/* Color al pasar el cursor 
.main-sidebar .nav-link:hover {
  background-color: #e67a45 !important; /* tono un poco más oscuro del fondo 
  color: #fff !important;
}

/* Color del ícono 
.main-sidebar .nav-icon {
  color: #3b1c0d !important;
} */
