﻿
/* Aplica uppercase solo al texto ingresado en el input */
input.text-uppercase {
    text-transform: uppercase;
}

    /* Estilo opcional para el placeholder */
    input.text-uppercase::placeholder {
        text-transform: none; /* Mantiene el placeholder sin cambios */
    }

.fs-input {
    font-size: 18px !important;
}

.imgSizePrev {
    width: 100px;    
}

.image-login {
    width: 100px;
}

.hidden {
    display: none !important
}

.disable-text-color {
    background-color: #ddedfb !important;
    border-color: #56aaf0;
}

.mt-input-group {
    margin-top: -4px
}

.card-border-radius {
    border-radius: 15px !important;
}

.bg-cards {
    background-color: #e8eaf4 !important;
}

/*------------------------------------------
*/
.product-card {
    display: flex;
    align-items: flex-start;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 6px;
    /*box-shadow: 0 2px 6px #0001;*/
    background: #fff;
    gap: 16px;
    font-family: sans-serif;
}

.product-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
   /* border-radius: 8px;
    border: 1px solid #ccc;*/
}

.product-details {
    flex: 1;
}

.product-specs {
    color: #222;
    font-weight: 600
}

.product-title {
    margin: 0 0 8px 0;
    font-size: 1.2em;
    color: #222;
    font-weight: 600
}

.product-qty {
    margin: 0 10px 0 8px;
    font-size: 1.2em;
    color: #222;
    font-weight: 600
}

/*.product-specs {
    list-style: disc inside;
    margin: 0 0 16px 0;
    padding: 0;
    font-size: 0.97em;
    color: #555;
}*/

.product-price {       
    color: #222;
    font-weight: 600
}

.product-total {
    margin: 0 0 8px 0;
    font-size: 2.0em;
    color: #5156be;
    font-weight: 600;
}

.action-row {
    /*display: flex;
    align-items: center;
    gap: 12px;*/
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #e0e0e0;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.delete-btn {
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 7px 18px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}

    .delete-btn:hover {
        background: #c0392b;
    }

.modal-header-background-color {
    background-color: #e8eaf4 !important;
}
.text-color-title {
    color: rgba(58, 94, 152, 1.00);
}

.font-size-26 {
    font-size: 26px !important;
}