/* Estilos exclusivos para a Página de Inconsistências */

body {
    background-color: #f1f5f9;
    padding-top: 30px;
}

.card {
    border-radius: 15px;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.header-panel {
    background-color: #0d47a1;
    color: white;
    border-radius: 15px 15px 0 0;
    padding: 25px;
}

.logo-img {
    max-height: 60px;
    width: auto;
    margin-bottom: 15px;
}

/* Badges de Status baseadas no status_models.js */
.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);
}

tbody tr {
    cursor: pointer;
    transition: background-color 0.2s;
}

tbody tr:hover {
    background-color: #f8fafc !important;
}

/* Modal de Detalhes */
.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;
}

.correction-item {
    margin-bottom: 10px;
    padding: 8px;
    background-color: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #0d47a1;
}

.obs-box {
    background-color: #fff9c4;
    padding: 10px;
    border-radius: 8px;
    font-style: italic;
}



.carousel-control-prev, .carousel-control-next {
    width: 10%;
    background-color: rgba(0,0,0,0.1);
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    background-color: rgba(0,0,0,0.3);
}

/* Estilos para o Carrossel de Fotos no Modal */
#carouselInconsistencia {
    background-color: #ffffff; /* Fundo branco conforme solicitado */
    border: 1px solid #e2e8f0;
}

.carousel-item img {
    height: 350px;
    width: 100%;
    object-fit: contain;
}

/* Ajuste das setas para ficarem visíveis no fundo branco */
.carousel-control-prev-icon, .carousel-control-next-icon {
    filter: invert(1) grayscale(100) brightness(0.5);
}