body {
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 1200px;
    width: 100%;
    margin: 30px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px #0001;
    padding: 32px;
}
h1 {
    text-align: center;
    color: #1a237e;
    margin-bottom: 30px;
}
form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}
.file-inputs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
form label {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    color: #333;
    min-width: 250px;
}
button {
    background: #1a237e;
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
    align-self: center;
    margin-top: 16px;
}
button:hover {
    background: #3949ab;
}
.status-box, .logs-box, .resultado-box {
    margin-top: 24px;
    padding: 16px;
    background: #f1f8e9;
    border-radius: 6px;
    box-shadow: 0 1px 4px #0001;
}
.status-box h2, .logs-box h2, .resultado-box h2 {
    margin-top: 0;
    color: #33691e;
}
pre {
    background: #212121;
    color: #fff;
    padding: 12px;
    border-radius: 4px;
    overflow-x: auto;
    font-size: 0.95em;
    max-height: 300px;
    overflow-y: auto;
}
#resultado table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    table-layout: fixed;
    word-break: break-word;
    font-size: 0.9em;
}
#resultado th, #resultado td {
    border: 1px solid #bbb;
    padding: 8px;
    text-align: left;
    vertical-align: top;
}
#resultado th {
    background: #e3f2fd;
    font-weight: bold;
}
#resultado td.ok {
    background: #c8e6c9;
    color: #256029;
    font-weight: bold;
}
#resultado td.suspeito {
    background: #ffcdd2;
    color: #b71c1c;
    font-weight: bold;
}
.btn {
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 0.8em;
    cursor: pointer;
    border: none;
}
.btn-sm {
    padding: 2px 6px;
    font-size: 0.75em;
}
.btn-outline-success {
    background: transparent;
    color: #28a745;
    border: 1px solid #28a745;
}
.btn-outline-success:hover {
    background: #28a745;
    color: white;
}
.btn-primary {
    background: #007bff;
    color: white;
    border: 1px solid #007bff;
}
.btn-primary:hover {
    background: #0056b3;
}
.resultado-box {
    width: 100%;
    box-sizing: border-box;
}
.document-column {
    max-width: 200px;
    word-wrap: break-word;
}
.status-column {
    width: 80px;
    text-align: center;
}
.action-column {
    width: 80px;
    text-align: center;
}
.container-card {
    background: #e3f2fd;
    border: 2px solid #1976d2;
    border-radius: 6px;
    margin-bottom: 12px;
    padding: 10px 10px 6px 10px;
    box-shadow: 0 1px 4px #1976d233;
}
.container-title {
    font-weight: bold;
    color: #1976d2;
    margin-bottom: 4px;
    font-size: 1.05em;
}
tr.container-1-row td {
    background: #e3f2fd !important;
}
tr.container-2-row td {
    background: #e8f5e9 !important;
}
tr.container-3-row td {
    background: #fffde7 !important;
}
tr.container-4-row td {
    background: #fce4ec !important;
}
@media (max-width: 1200px) {
    .container {
        padding: 16px;
        margin: 15px;
    }
    #resultado table {
        font-size: 0.8em;
    }
    .file-inputs {
        flex-direction: column;
        align-items: center;
    }
    form label {
        min-width: 200px;
    }
}
@media (max-width: 768px) {
    .container {
        padding: 8px;
        margin: 8px;
    }
    #resultado table {
        font-size: 0.7em;
    }
    #resultado th, #resultado td {
        padding: 4px;
    }
} 