/* ==========================================================================
   FAKHAMA LUXURY CAR RENTAL SYSTEM - STYLESHEET
   Dark Obsidian & Champagne Gold Palette
   RTL Mobile-First UI
   ========================================================================== */

:root {
  --bg-primary: #0b0e14;
  --bg-surface: #131722;
  --bg-card: #1c2230;
  --bg-card-hover: #242c3d;
  
  --gold-primary: #e6c667;
  --gold-gradient: linear-gradient(135deg, #f5d77f 0%, #d4af37 50%, #aa820a 100%);
  --gold-shadow: rgba(212, 175, 55, 0.25);
  
  --emerald-accent: #10b981;
  --emerald-gradient: linear-gradient(135deg, #34d399 0%, #059669 100%);
  
  --ruby-accent: #ef4444;
  --ruby-gradient: linear-gradient(135deg, #f87171 0%, #dc2626 100%);
  
  --blue-accent: #3b82f6;
  --purple-accent: #8b5cf6;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-sub: #64748b;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 175, 55, 0.3);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Cairo', 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  direction: rtl;
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #2a3447;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Typography & Badges */
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
.text-emerald { color: var(--emerald-accent) !important; }
.text-ruby { color: var(--ruby-accent) !important; }
.bold { font-weight: 700; }

.badge-gold {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-primary);
  border: 1px solid var(--border-gold);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* App Layout Structure */
.app-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: calc(12px + env(safe-area-inset-top)) 16px 32px 16px;
}

/* Header Section */
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  backdrop-filter: blur(12px);
}

.brand-section {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  background: var(--gold-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--gold-shadow);
}
.logo-icon {
  font-size: 24px;
}

.brand-title {
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-sub {
  font-size: 12px;
  color: var(--text-muted);
}

/* Navigation Tabs */
.nav-tabs {
  display: flex;
  gap: 8px;
  background: var(--bg-surface);
  padding: 6px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  margin-bottom: 24px;
  overflow-x: auto;
  white-space: nowrap;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
}

.tab-btn:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.04);
}

.tab-btn.active {
  background: var(--gold-gradient);
  color: #0b0e14;
  font-weight: 800;
  box-shadow: 0 4px 15px var(--gold-shadow);
}

.badge-count {
  background: #0b0e14;
  color: var(--gold-primary);
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 20px;
  font-weight: 700;
}
.tab-btn.active .badge-count {
  background: rgba(0, 0, 0, 0.2);
  color: #000;
}

/* Main Tab Pages */
.tab-page {
  display: none;
  animation: fadeIn 0.35s ease-out;
}
.tab-page.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero Banner */
.hero-banner {
  background: linear-gradient(135deg, #1c2230 0%, #10141d 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.hero-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top left, rgba(212,175,55,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-text h2 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.hero-text p { color: var(--text-muted); font-size: 13px; }

.quick-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  color: var(--emerald-accent);
}
.chip-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.dot-green { background: var(--emerald-accent); box-shadow: 0 0 10px var(--emerald-accent); }

/* KPI Grid */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.kpi-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition-fast);
}
.kpi-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.15);
}
.kpi-card.gold-border {
  border-color: var(--border-gold);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, var(--bg-surface) 100%);
}

.kpi-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.kpi-title { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.kpi-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.05);
}
.kpi-value {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
}
.kpi-sub { font-size: 12px; color: var(--text-sub); }

/* Dashboard Grid */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
}
@media (max-width: 900px) {
  .dashboard-grid { grid-template-columns: 1fr; }
}

.card-glass {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.card-title { font-size: 16px; font-weight: 700; color: #fff; }
.card-badge {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg-card);
  padding: 4px 10px;
  border-radius: 12px;
}

.chart-wrapper {
  position: relative;
  height: 280px;
  width: 100%;
}

/* Compact Active Contracts List */
.compact-contracts-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.compact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}
.compact-item-car {
  font-weight: 700; font-size: 14px; color: #fff;
}
.compact-item-renter {
  font-size: 12px; color: var(--text-muted);
}

/* Section Toolbars */
.section-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  flex: 1;
  min-width: 260px;
}
.search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  width: 100%;
  font-size: 14px;
}

.filter-group {
  display: flex;
  gap: 6px;
  background: var(--bg-surface);
  padding: 4px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}
.filter-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.filter-btn.active {
  background: var(--bg-card);
  color: var(--gold-primary);
  font-weight: 700;
}

/* Buttons */
.btn-primary {
  background: var(--gold-gradient);
  color: #0b0e14;
  border: none;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px var(--gold-shadow);
  transition: var(--transition-bounce);
}
.btn-primary:active { transform: scale(0.96); }

.btn-gold-full {
  width: 100%;
  background: var(--gold-gradient);
  color: #0b0e14;
  border: none;
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--gold-shadow);
  transition: var(--transition-fast);
}
.btn-gold-full:hover { opacity: 0.95; }

.btn-emerald {
  background: var(--emerald-gradient);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-text {
  background: transparent;
  border: none;
  color: var(--gold-primary);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

/* Contracts Cards Grid */
.contracts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 18px;
}

.contract-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-fast);
  position: relative;
}
.contract-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contract-card.status-active {
  border-right: 4px solid var(--gold-primary);
}
.contract-card.status-completed {
  border-right: 4px solid var(--emerald-accent);
}

.contract-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.c-car-title { font-size: 17px; font-weight: 800; color: #fff; }
.c-plate-tag {
  font-size: 11px;
  background: var(--bg-card);
  color: var(--gold-primary);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid var(--border-gold);
  margin-top: 2px;
  display: inline-block;
}

.renter-identity-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  padding: 10px 12px;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
}
.id-thumb-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  border: 1px solid var(--border-gold);
  flex-shrink: 0;
}
.id-thumb-wrapper img {
  width: 100%; height: 100%; object-fit: cover;
}
.renter-details-text { font-size: 13px; line-height: 1.4; }
.renter-name { font-weight: 700; color: #fff; }
.renter-phone { font-size: 11px; color: var(--text-muted); }

.c-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-size: 12px;
  margin-bottom: 14px;
}
.info-cell span { display: block; color: var(--text-sub); }
.info-cell strong { color: var(--text-main); font-size: 13px; }

.c-financial-summary {
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-card-actions {
  display: flex;
  gap: 8px;
}

/* Fleet Grid */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.fleet-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-fast);
}
.fleet-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}

.fleet-img-wrapper {
  height: 180px;
  width: 100%;
  position: relative;
  background: #000;
}
.fleet-img-wrapper img {
  width: 100%; height: 100%; object-fit: cover;
}
.fleet-badge-status {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.status-available { background: rgba(16, 185, 129, 0.2); color: #34d399; border: 1px solid #059669; }
.status-rented { background: rgba(212, 175, 55, 0.2); color: #f5d77f; border: 1px solid #d4af37; }

.fleet-body {
  padding: 16px;
}
.fleet-title { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.fleet-plate { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }

.fleet-stats-row {
  display: flex;
  justify-content: space-between;
  background: var(--bg-card);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  margin-bottom: 12px;
}

/* Expenses Layout */
.expenses-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 20px;
}
@media (max-width: 900px) {
  .expenses-layout { grid-template-columns: 1fr; }
}

.table-responsive {
  overflow-x: auto;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: right;
  font-size: 13px;
}
.data-table th {
  background: var(--bg-card);
  color: var(--text-muted);
  padding: 12px 14px;
  font-weight: 600;
  border-bottom: 1px solid var(--border-subtle);
}
.data-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-main);
}

/* Modals */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fadeIn 0.2s ease-out;
}
.modal-backdrop.active {
  display: flex;
}

.modal-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}
.modal-lg { max-width: 800px; }

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-title { font-size: 18px; font-weight: 800; color: #fff; }
.modal-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
}

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  background: var(--bg-card);
}

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .span-2 { grid-column: auto !important; }
}
.span-2 { grid-column: span 2; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}
.required-label::after {
  content: " *";
  color: var(--ruby-accent);
}

.input-field {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  outline: none;
  transition: var(--transition-fast);
}
.input-field:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.id-upload-area {
  border: 2px dashed var(--border-gold);
  background: rgba(212, 175, 55, 0.03);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}
.id-upload-area:hover {
  background: rgba(212, 175, 55, 0.08);
}
.id-preview-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 12px;
}
.upload-icon { font-size: 32px; }

.calc-summary-box {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.summary-item {
  display: flex;
  flex-direction: column;
  font-size: 12px;
}

/* Full ID Image Modal */
.full-id-img {
  max-width: 100%;
  max-height: 60vh;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
  object-fit: contain;
}

/* Printable Contract Layout */
.contract-printable-document {
  background: #ffffff;
  color: #111827;
  padding: 40px;
  border-radius: 8px;
  font-family: 'Cairo', sans-serif;
  direction: rtl;
}
.doc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #d4af37;
  padding-bottom: 16px;
  margin-bottom: 24px;
}
.doc-title { font-size: 22px; font-weight: 800; color: #1e293b; }
.doc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.doc-box {
  border: 1px solid #e2e8f0;
  padding: 12px 16px;
  border-radius: 6px;
  background: #f8fafc;
}
.doc-box h4 { font-size: 14px; font-weight: 800; color: #d4af37; margin-bottom: 8px; }
.doc-box p { font-size: 12px; margin-bottom: 4px; }

.doc-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 13px;
}
.doc-table th { background: #f1f5f9; padding: 10px; text-align: right; border: 1px solid #cbd5e1; }
.doc-table td { padding: 10px; border: 1px solid #cbd5e1; }

.doc-signatures {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px dashed #cbd5e1;
}
.sig-box { text-align: center; font-size: 13px; }
.sig-line { margin-top: 50px; border-top: 1px solid #000; width: 160px; display: inline-block; }

/* Reports Print Area */
.report-header-box { margin-bottom: 20px; }
.report-controls { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.report-select-group { display: flex; align-items: center; gap: 10px; }

.report-print-area {
  padding: 28px;
  background: var(--bg-surface);
}
.report-company-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 16px;
  margin-bottom: 20px;
}
.report-summary-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
.rep-card {
  background: var(--bg-card);
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}
.rep-card.highlight { border-color: var(--border-gold); background: rgba(212,175,55,0.05); }
.rep-label { font-size: 12px; color: var(--text-muted); display: block; margin-bottom: 4px; }
.rep-val { font-size: 20px; font-weight: 800; color: #fff; }

.report-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 12px;
}
.report-table th, .report-table td {
  padding: 10px 12px;
  border: 1px solid var(--border-subtle);
  text-align: right;
}
.report-table th { background: var(--bg-card); color: var(--gold-primary); font-weight: 700; }

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background: var(--bg-card);
  color: #fff;
  border: 1px solid var(--border-gold);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation: slideIn 0.3s ease-out;
}
@keyframes slideIn {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Print CSS Rules */
@media print {
  body * { visibility: hidden; }
  .no-print { display: none !important; }
  #modalPrintContract, #modalPrintContract *,
  #tab-reports, #tab-reports * {
    visibility: visible;
  }
  .modal-backdrop { background: none; position: static; }
  .modal-card { border: none; box-shadow: none; max-width: 100%; }
  .contract-printable-document { padding: 0; }
}