﻿/* Modal inventario */
#inventoryModal .custom-inventory-modal-content {
    border-radius: 12px;
}

#inventoryModal .custom-inventory-modal-body {
    background-color: #F4F8FF;
    border-radius: 12px;
    position: relative;
}

#inventoryModal .inventory-modal-title {
    color: #0a2140;
    padding-right: 40px;
}

#inventoryModal .custom-inventory-card {
    border-radius: 10px;
    background-color: #ffffff;
    padding: 10px 20px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Producto en inventario */
#inventoryModal .inventory-product-title {
    color: #0a2140;
    font-size: 1.2rem;
}

#inventoryModal .inventory-product-id {
    font-size: 1.2rem;
    color: #8cb8da;
}

#inventoryModal .inventory-product-available {
    font-size: 0.9rem;
    color: #b30000;
    margin-bottom: 0;
}

/* Etiquetas */
#inventoryModal .inventory-qty-label {
    font-size: 1rem;
}

#inventoryModal select.form-select-sm {
    min-width: 80px; 
    padding: 0.35rem 0.75rem;
    font-size: 1rem;
    border: 2px solid #0a2140;
    border-radius: 6px;
    background-color: #fff;
}

#inventoryModal select.form-select-sm:focus {
    border-color: #2b6cb0; 
    box-shadow: 0 0 0 0.2rem rgba(43, 108, 176, 0.25);
}

#inventoryModal .inventory-close-img {
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    top: 40%;
    left: -10px;
    z-index: 2;
}

#inventoryModal .product-img {
    max-width: 100%;
    border-radius: 6px;
    z-index: 1;
}
