/**
 * OCEWeb Shortcuts - Stili di Stampa per Cheatsheet PDF / Carta
 */

@media print {
  body {
    background: #fff !important;
    color: #000 !important;
    font-size: 10pt;
    font-family: Arial, Helvetica, sans-serif;
  }

  .no-print, nav, footer, .os-switcher, .search-container, .btn, .action-btn {
    display: none !important;
  }

  .print-header {
    display: block !important;
    border-bottom: 2px solid #000;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }

  .print-header h1 {
    font-size: 18pt;
    margin: 0;
    color: #000;
  }

  .print-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .print-section {
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 15px;
  }

  .print-section h2 {
    font-size: 12pt;
    border-bottom: 1px solid #666;
    padding-bottom: 4px;
    margin-bottom: 8px;
    color: #222;
  }

  .print-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 9pt;
  }

  .print-table th, .print-table td {
    padding: 4px 6px;
    border-bottom: 1px solid #ddd;
    text-align: left;
  }

  .kbd-key {
    background: #f4f4f4 !important;
    color: #000 !important;
    border: 1px solid #888 !important;
    box-shadow: none !important;
    font-size: 8.5pt !important;
    padding: 1px 4px !important;
    border-radius: 3px !important;
    font-weight: bold !important;
  }

  .kbd-plus {
    color: #444 !important;
  }
}
