/* Estilos exclusivos para a Página de Faltas de Produto */

.badge-vendas {
    background-color: #e0f2fe;
    color: #0369a1;
    border: 1px solid #bae6fd;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: bold;
}

.obs-text {
    font-size: 0.85rem;
    color: #475569;
    background-color: #f8fafc;
    padding: 8px;
    border-radius: 6px;
    border-left: 3px solid #cbd5e1;
}

.logo-img {
    max-height: 60px;
    width: auto;
    margin-bottom: 15px;
}

tbody tr {
    cursor: pointer;
    transition: background-color 0.2s;
}

tbody tr:hover {
    background-color: #f8fafc !important;
}

.modal-header {
    background-color: #0d47a1;
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-content {
    border-radius: 15px;
    border: none;
}

.detail-label {
    font-size: 0.75rem;
    font-weight: bold;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.detail-value {
    font-size: 1rem;
    color: #1e293b;
    margin-bottom: 15px;
}

/* Estilos das Badges de Status */
.badge-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: help;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-status:active {
    transform: scale(0.95);
}

#carouselFalta { border: 1px solid #e2e8f0; }
.carousel-item img { height: 300px; width: 100%; object-fit: contain; }
.carousel-control-prev-icon, .carousel-control-next-icon { filter: invert(1) grayscale(100) brightness(0.5); }

/* Cores de Status sincronizadas com status_models.js */
.status-pendente { background-color: #fff3e0; color: #e65100; border-color: #ffe0b2; }
.status-solicitado { background-color: #e3f2fd; color: #0d47a1; border-color: #bbdefb; }
.status-disponivel { background-color: #e8f5e9; color: #1b5e20; border-color: #c8e6c9; }
.status-substituido { background-color: #e8eaf6; color: #3f51b5; border-color: #c5cae9; }
.status-extraviado { background-color: #ffebee; color: #b71c1c; border-color: #ffcdd2; }
.status-cancelado { background-color: #f5f5f5; color: #616161; border-color: #e0e0e0; }
