/**
 * Arquivo:   app/control/salesfast/vendas/reports/style.css
 * Propósito: Folha de estilos para o relatório "Espelho do Pedido de Venda".
 * Versão:    2.0.0
 * Alteração: Adicionado prefixo 'salesfast-report-' em todas as classes para evitar conflito de CSS.
 */

body {
    font-family: helvetica;
    font-size: 9pt;
    color: #374151;
}

h1 { font-size: 16pt; font-weight: bold; color: #111827; }
h2 { font-size: 12pt; font-weight: bold; color: #111827; }
p { margin: 2px 0; }
b { font-weight: 600; }
hr { border-top: 1px solid #E5E7EB; }
.text-right { text-align: right; }

.salesfast-report-layout {}

.salesfast-report-header-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 10px;
    border-bottom: 2px solid #111827;
}
.salesfast-report-company-info { width: 60%; }
.salesfast-report-title-info { width: 40%; text-align: right; }

.salesfast-report-section-title {
    background-color: #F3F4F6;
    font-weight: bold;
    font-size: 10pt;
    padding: 4px;
    border-bottom: 1px solid #E5E7EB;
    margin-top: 10px;
}

.salesfast-report-data-block {
    padding: 4px;
    border: 1px solid #E5E7EB;
    border-top: none;
    margin-bottom: 5px;
}

.salesfast-report-info-table {
    width: 100%;
}

.salesfast-report-items-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 5px;
}
.salesfast-report-items-table th, .salesfast-report-items-table td {
    border: 1px solid #E5E7EB;
    padding: 5px;
    text-align: left;
    vertical-align: top;
}
.salesfast-report-items-table thead th {
    background-color: #F9FAFB;
    font-weight: bold;
    font-size: 8pt;
}

.salesfast-report-footer-section {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.salesfast-report-obs-container {
    width: 65%;
}
.salesfast-report-obs-container p {
    font-size: 8pt;
    padding: 5px;
}

.salesfast-report-totals-container {
    width: 30%;
}
.salesfast-report-totals-table {
    width: 100%;
    font-size: 9pt;
}
.salesfast-report-totals-table .total-final {
    font-weight: bold;
    font-size: 10pt;
    border-top: 1px solid #374151;
}

.salesfast-report-signatures {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    font-size: 8pt;
}

.salesfast-report-signature-line {
    padding-top: 10px;
}

