/* Estilos Customizados para o Sistema OCR */

body {
    background-color: #f0f2f5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1.5rem;
}

.card-header {
    background-color: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-weight: 600;
}

.table {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.table thead th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    color: #495057;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.img-preview {
    max-width: 80px;
    transition: transform 0.2s;
    cursor: zoom-in;
    border: 1px solid #ddd;
}

.img-preview:hover {
    transform: scale(1.1);
}

.visto-row {
    background-color: #f1f8ff !important;
    opacity: 0.7;
}

.visto-row strong {
    text-decoration: line-through;
    color: #6c757d;
}

.btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-primary:hover {
    background-color: #004494;
    border-color: #004494;
}

.img-container {
    background: #fff;
    padding: 15px;
    border: 1px solid #e3e6f0;
    border-radius: 4px;
    margin-top: 10px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.075);
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .table-responsive {
        border: 0;
    }
}
