/* نظام التقييم العقاري - شركة هيفاء بن سعيدان */

/* Print Styles */
@media print {
  body > * { display: none !important; }
  #print-area { display: block !important; }
  #print-area { 
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999;
    background: white;
    overflow: auto;
  }
  @page {
    margin: 15mm 12mm;
    size: A4;
  }
}

/* Scrollbar styling */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #C9A77C; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #0A1E42; }

/* Number input no arrows */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
input[type=number] { -moz-appearance: textfield; }

/* Smooth transitions */
.section { animation: fadeIn 0.2s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

/* Focus visible */
:focus-visible { outline: 2px solid #C9A77C; outline-offset: 2px; }
