/* ═══════════════════════════════════════════════════════════════
   style.css — Design brutaliste, ERP interne
   ═══════════════════════════════════════════════════════════════ */

* { box-sizing: border-box; }

body {
  font-family: 'Courier New', Courier, monospace;
  background: #e8e8e8;
  color: #111;
  margin: 0;
  padding: 0;
  font-size: 13px;
}

input, select, textarea, button {
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
}

.field-label {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #333;
  margin-bottom: 2px;
}

.input-field {
  border: 2px solid #555;
  background: #fff;
  padding: 5px 8px;
  width: 100%;
  outline: none;
}

.input-field:focus {
  border-color: #000;
  background: #fffff0;
}

.btn {
  border: 2px solid #000;
  background: #d0d0d0;
  padding: 6px 16px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
}

.btn:hover {
  background: #000;
  color: #fff;
}

.btn-primary {
  background: #333;
  color: #fff;
  border-color: #000;
}

.btn-primary:hover {
  background: #555;
}

.section-box {
  border: 2px solid #000;
  background: #f5f5f5;
  padding: 12px;
  margin-bottom: 12px;
}

.section-title {
  background: #000;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: -12px -12px 10px -12px;
  display: block;
}

select {
  -webkit-appearance: none;
  appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%23333' stroke-width='2'/%3E%3C/svg%3E") no-repeat right 8px center;
  padding-right: 28px;
}

textarea {
  resize: vertical;
}

/* ═══ PRINT ═══ */
@media print {
  body {
    background: #fff !important;
    font-size: 12pt;
    line-height: 1.6;
  }
  .no-print { display: none !important; }
  .print-only { display: block !important; }
  .section-box { border: none; padding: 0; margin: 0; background: none; }
  .print-content {
    max-width: 100%;
    padding: 40px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 12pt;
  }
  .print-content h1 {
    font-size: 16pt;
    text-align: center;
    margin-bottom: 20pt;
    text-transform: uppercase;
    border-bottom: 2px solid #000;
    padding-bottom: 10pt;
  }
  .print-content p {
    text-align: justify;
    margin-bottom: 8pt;
    text-indent: 20pt;
  }
  .print-content .meta-line {
    font-size: 10pt;
    text-indent: 0;
    text-align: center;
    margin-bottom: 4pt;
  }
  @page { margin: 2cm; }
}

.print-only { display: none; }
