@tailwind base;
@tailwind components;
@tailwind utilities;

/* After Sales Module Styles */

/* Base styles */
body {
  line-height: 1.5;
  color: #111827;
  background-color: #f3f4f6;
}

/* Text colors */
.text-white { color: #ffffff; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-gray-900 { color: #111827; }
.text-blue-300 { color: #93c5fd; }
.text-blue-500 { color: #3b82f6; }
.text-blue-600 { color: #2563eb; }
.text-blue-700 { color: #1d4ed8; }
.text-blue-800 { color: #1e40af; }
.text-indigo-600 { color: #4f46e5; }
.text-green-600 { color: #16a34a; }
.text-red-600 { color: #dc2626; }
.text-yellow-600 { color: #ca8a04; }

/* Background colors */
.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-gray-700 { background-color: #374151; }
.bg-gray-800 { background-color: #1f2937; }
.bg-gray-900 { background-color: #111827; }
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-700 { background-color: #1d4ed8; }
.bg-blue-800 { background-color: #1e40af; }
.bg-indigo-600 { background-color: #4f46e5; }
.bg-green-100 { background-color: #dcfce7; }
.bg-green-600 { background-color: #16a34a; }
.bg-red-100 { background-color: #fee2e2; }
.bg-red-600 { background-color: #dc2626; }
.bg-yellow-100 { background-color: #fef3c7; }

/* Spacing */
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.pt-1 { padding-top: 0.25rem; }
.pt-4 { padding-top: 1rem; }
.pt-5 { padding-top: 1.25rem; }
.pt-16 { padding-top: 4rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-5 { padding-bottom: 1.25rem; }
.pb-8 { padding-bottom: 2rem; }

.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-4 { margin: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 1rem; }
.ml-6 { margin-left: 1.5rem; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }

/* Sizing */
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }

.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }
.w-auto { width: auto; }
.w-full { width: 100%; }
.min-w-full { min-width: 100%; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }

/* Flexbox */
.flex { display: flex; }
.flex-1 { flex: 1 1 0%; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-grow { flex-grow: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }

/* Typography */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.tracking-wider { letter-spacing: 0.05em; }
.leading-4 { line-height: 1rem; }
.leading-6 { line-height: 1.5rem; }
.whitespace-nowrap { white-space: nowrap; }
.whitespace-pre-wrap { white-space: pre-wrap; }

/* Borders */
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-r { border-right-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-l { border-left-width: 1px; }
.border-0 { border-width: 0; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.border-gray-700 { border-color: #374151; }
.border-blue-300 { border-color: #93c5fd; }
.border-blue-400 { border-color: #60a5fa; }
.border-blue-700 { border-color: #1d4ed8; }
.border-transparent { border-color: transparent; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-l-md { border-top-left-radius: 0.375rem; border-bottom-left-radius: 0.375rem; }
.rounded-r-md { border-top-right-radius: 0.375rem; border-bottom-right-radius: 0.375rem; }

/* Effects */
.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.ring-1 { box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05); }
.ring-2 { box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05); }
.ring-opacity-5 { --tw-ring-opacity: 0.05; }
.ring-black { --tw-ring-color: #000; }
.ring-white { --tw-ring-color: #fff; }
.ring-offset-2 { --tw-ring-offset-width: 2px; }
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--tw-ring-color); }
.focus\:ring-offset-2:focus { --tw-ring-offset-width: 2px; }
.focus\:ring-white:focus { --tw-ring-color: #fff; }
.focus\:ring-indigo-500:focus { --tw-ring-color: #6366f1; }
.focus\:ring-blue-500:focus { --tw-ring-color: #3b82f6; }
.focus\:ring-offset-blue-800:focus { --tw-ring-offset-color: #1e40af; }
.focus\:border-indigo-500:focus { border-color: #6366f1; }
.focus\:border-blue-500:focus { border-color: #3b82f6; }
.hover\:bg-gray-50:hover { background-color: #f9fafb; }
.hover\:bg-gray-100:hover { background-color: #f3f4f6; }
.hover\:bg-gray-700:hover { background-color: #374151; }
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.hover\:text-white:hover { color: #fff; }
.hover\:text-gray-500:hover { color: #6b7280; }
.hover\:text-gray-900:hover { color: #111827; }
.hover\:text-blue-600:hover { color: #2563eb; }
.hover\:text-blue-900:hover { color: #1e3a8a; }
.hover\:underline:hover { text-decoration: underline; }

/* Position and Display */
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.top-2 { top: 0.5rem; }
.right-2 { right: 0.5rem; }
.top-4 { top: 1rem; }
.right-4 { right: 1rem; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.table { display: table; }
.overflow-auto { overflow: auto; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-hidden { overflow-y: hidden; }

/* Table Styles */
.table { border-collapse: collapse; width: 100%; }
.table th, .table td { padding: 0.75rem; }
.divide-y > * + * { border-top-width: 1px; }
.divide-gray-200 > * + * { border-color: #e5e7eb; }

/* Form Elements */
.form-input {
  height: 42px !important;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
  width: 100% !important;
  border-radius: 0.375rem !important;
  border: 1px solid #d1d5db;
}

.form-textarea {
  width: 100%;
  border-radius: 0.375rem;
  border: 1px solid #d1d5db;
  padding: 0.5rem 0.75rem;
}

/* Sidebar and Navigation */
@media (min-width: 768px) {
  .sidebar-container {
    position: fixed;
    top: 64px; /* Height of navbar */
    bottom: 0;
    width: 16rem;
    overflow-y: auto;
    z-index: 40; /* Lower z-index than navbar */
  }
  
  .main-content {
    margin-left: 16rem;
  }
}

/* Mobile Responsiveness */
/* Note: sm:hidden should be hidden at sm breakpoint and up (min-width: 640px), not below */

@media (min-width: 640px) {
  .sm\:flex { display: flex; }
  .sm\:block { display: block; }
  .sm\:hidden { display: none; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:flex-none { flex: none; }
  .sm\:items-center { align-items: center; }
  .sm\:justify-between { justify-content: space-between; }
  .sm\:justify-end { justify-content: flex-end; }
  .sm\:p-0 { padding: 0; }
  .sm\:p-6 { padding: 1.5rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:mt-0 { margin-top: 0; }
  .sm\:ml-3 { margin-left: 0.75rem; }
  .sm\:ml-4 { margin-left: 1rem; }
  .sm\:w-auto { width: auto; }
  .sm\:text-sm { font-size: 0.875rem; }
  .sm\:text-right { text-align: right; }
  .sm\:text-2xl { font-size: 1.5rem; }
  .sm\:flex-1 { flex: 1 1 0%; }
  /* Grid responsive classes */
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:block { display: block; }
  .md\:hidden { display: none; }
  .md\:table-row { display: table-row; }
  .md\:table-cell { display: table-cell; }
  .md\:table-header-group { display: table-header-group; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:items-center { align-items: center; }
  .md\:justify-between { justify-content: space-between; }
  .md\:flex-shrink-0 { flex-shrink: 0; }
  .md\:mt-0 { margin-top: 0; }
  .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-0 { padding-top: 0; padding-bottom: 0; }
  .md\:pl-0 { padding-left: 0; }
  .md\:pr-0 { padding-right: 0; }
  .md\:w-64 { width: 16rem; }
  .md\:w-1\/2 { width: 50%; }
  .md\:w-1\/3 { width: 33.333333%; }
  .md\:w-2\/3 { width: 66.666667%; }
  .md\:rounded-lg { border-radius: 0.5rem; }
  .md\:rounded-none { border-radius: 0; }
}

@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:block { display: block; }
  .lg\:hidden { display: none; }
  .lg\:table-cell { display: table-cell; }
  .lg\:table-row { display: table-row; }
  .lg\:inline { display: inline; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:col-span-1 { grid-column: span 1 / span 1; }
  .lg\:mt-0 { margin-top: 0; }
  .lg\:px-0 { padding-left: 0; padding-right: 0; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-0 { padding-top: 0; padding-bottom: 0; }
  .lg\:p-8 { padding: 2rem; }
  .lg\:w-1\/4 { width: 25%; }
  .lg\:w-1\/3 { width: 33.333333%; }
  .lg\:w-2\/3 { width: 66.666667%; }
  .lg\:w-3\/4 { width: 75%; }
}

@media (min-width: 1280px) {
  .xl\:flex { display: flex; }
  .xl\:block { display: block; }
  .xl\:hidden { display: none; }
  .xl\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .xl\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .xl\:col-span-1 { grid-column: span 1 / span 1; }
  .xl\:col-span-2 { grid-column: span 2 / span 2; }
  .xl\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .xl\:w-1\/4 { width: 25%; }
  .xl\:w-1\/5 { width: 20%; }
}

/* Utility classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }
.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }
.select-none { user-select: none; }
.select-text { user-select: text; }

/* Specific component styles */
.dropdown-menu {
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(209, 213, 219, 0.3);
} 
@tailwind base;
@tailwind components;
@tailwind utilities;

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}

*/
/* Professional Car Dealership Quotation - Clean & Simple */
/* line 3, app/assets/stylesheets/pdf.scss */
.pdf-document {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 10pt;
  line-height: 1.4;
  color: #222;
  -webkit-print-color-adjust: exact !important;
  color-adjust: exact !important;
}

/* line 12, app/assets/stylesheets/pdf.scss */
.quotation-page {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 10pt;
  line-height: 1.4;
  color: #222;
  padding: 20px 25px;
  max-width: 100%;
  -webkit-print-color-adjust: exact !important;
  /* === HEADER === */
  /* === LINES === */
  /* === TWO COLUMN LAYOUT === */
  /* === SECTION LABELS === */
  /* === CUSTOMER === */
  /* === VEHICLE SPECS === */
  /* === PRICE TABLE === */
  /* === INCLUSIONS === */
  /* === BANK LIST === */
  /* === AGENT === */
  /* === NOTICE BOX === */
  /* === NOTES === */
  /* === TERMS === */
  /* === FOOTER === */
}

/* line 22, app/assets/stylesheets/pdf.scss */
.quotation-page .company-header {
  display: table;
  width: 100%;
  margin-bottom: 10px;
}

/* line 28, app/assets/stylesheets/pdf.scss */
.quotation-page .company-left {
  display: table-cell;
  width: 55%;
  vertical-align: top;
}

/* line 34, app/assets/stylesheets/pdf.scss */
.quotation-page .company-right {
  display: table-cell;
  width: 45%;
  vertical-align: top;
  text-align: right;
}

/* line 41, app/assets/stylesheets/pdf.scss */
.quotation-page .company-name {
  font-size: 18pt;
  font-weight: bold;
  color: #000;
  letter-spacing: 1px;
}

/* line 48, app/assets/stylesheets/pdf.scss */
.quotation-page .company-tagline {
  font-size: 9pt;
  color: #555;
  font-style: italic;
  margin-bottom: 3px;
}

/* line 55, app/assets/stylesheets/pdf.scss */
.quotation-page .company-address,
.quotation-page .company-contact {
  font-size: 8pt;
  color: #666;
}

/* line 61, app/assets/stylesheets/pdf.scss */
.quotation-page .doc-type {
  font-size: 22pt;
  font-weight: bold;
  color: #000;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

/* line 69, app/assets/stylesheets/pdf.scss */
.quotation-page .meta-table {
  margin-left: auto;
  border-collapse: collapse;
}

/* line 73, app/assets/stylesheets/pdf.scss */
.quotation-page .meta-table td {
  font-size: 9pt;
  padding: 1px 0;
}

/* line 78, app/assets/stylesheets/pdf.scss */
.quotation-page .meta-table .label {
  color: #666;
  padding-right: 8px;
  text-align: right;
}

/* line 84, app/assets/stylesheets/pdf.scss */
.quotation-page .meta-table .value {
  color: #000;
  font-weight: 500;
}

/* line 91, app/assets/stylesheets/pdf.scss */
.quotation-page .line-thick {
  height: 2px;
  background: #000;
  margin: 10px 0;
}

/* line 97, app/assets/stylesheets/pdf.scss */
.quotation-page .line-thin {
  height: 1px;
  background: #ccc;
  margin: 12px 0;
}

/* line 104, app/assets/stylesheets/pdf.scss */
.quotation-page .two-col-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}

/* line 110, app/assets/stylesheets/pdf.scss */
.quotation-page .col-left {
  width: 50%;
  vertical-align: top;
  padding-right: 15px;
}

/* line 116, app/assets/stylesheets/pdf.scss */
.quotation-page .col-right {
  width: 50%;
  vertical-align: top;
  padding-left: 15px;
  border-left: 1px solid #ddd;
}

/* line 124, app/assets/stylesheets/pdf.scss */
.quotation-page .section-label {
  font-size: 8pt;
  font-weight: bold;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

/* line 133, app/assets/stylesheets/pdf.scss */
.quotation-page .section-block {
  margin-bottom: 10px;
}

/* line 138, app/assets/stylesheets/pdf.scss */
.quotation-page .customer-name {
  font-size: 11pt;
  font-weight: bold;
  color: #000;
}

/* line 144, app/assets/stylesheets/pdf.scss */
.quotation-page .customer-detail {
  font-size: 9pt;
  color: #444;
}

/* line 150, app/assets/stylesheets/pdf.scss */
.quotation-page .vehicle-specs {
  border-collapse: collapse;
}

/* line 153, app/assets/stylesheets/pdf.scss */
.quotation-page .vehicle-specs td {
  font-size: 9pt;
  padding: 2px 0;
}

/* line 158, app/assets/stylesheets/pdf.scss */
.quotation-page .vehicle-specs .spec-label {
  color: #666;
  width: 60px;
}

/* line 163, app/assets/stylesheets/pdf.scss */
.quotation-page .vehicle-specs .spec-value {
  color: #000;
  font-weight: 500;
}

/* line 170, app/assets/stylesheets/pdf.scss */
.quotation-page .price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0;
}

/* line 175, app/assets/stylesheets/pdf.scss */
.quotation-page .price-table th {
  font-size: 8pt;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 10px;
  background: #222;
  color: #fff;
  text-align: left;
}

/* line 186, app/assets/stylesheets/pdf.scss */
.quotation-page .price-table th.col-desc {
  width: 70%;
}

/* line 190, app/assets/stylesheets/pdf.scss */
.quotation-page .price-table th.col-amt {
  width: 30%;
  text-align: right;
}

/* line 195, app/assets/stylesheets/pdf.scss */
.quotation-page .price-table td {
  font-size: 9pt;
  padding: 8px 10px;
  border-bottom: 1px solid #eee;
}

/* line 201, app/assets/stylesheets/pdf.scss */
.quotation-page .price-table .amount {
  text-align: right;
  font-family: 'Courier New', Courier, monospace;
  font-size: 9pt;
}

/* line 207, app/assets/stylesheets/pdf.scss */
.quotation-page .price-table .discount-row td {
  color: #c00;
}

/* line 211, app/assets/stylesheets/pdf.scss */
.quotation-page .price-table .discount {
  color: #c00;
}

/* line 216, app/assets/stylesheets/pdf.scss */
.quotation-page .price-table tfoot .total-row td {
  font-weight: bold;
  font-size: 10pt;
  background: #f5f5f5;
  border-top: 2px solid #222;
  border-bottom: none;
  padding: 10px;
}

/* line 225, app/assets/stylesheets/pdf.scss */
.quotation-page .price-table tfoot .total-row .total {
  font-size: 11pt;
  color: #000;
}

/* line 233, app/assets/stylesheets/pdf.scss */
.quotation-page .inclusions {
  font-size: 9pt;
}

/* line 237, app/assets/stylesheets/pdf.scss */
.quotation-page .inclusion-row {
  margin-bottom: 3px;
}

/* line 241, app/assets/stylesheets/pdf.scss */
.quotation-page .inclusion-item {
  display: inline-block;
  width: 32%;
  color: #333;
}

/* line 248, app/assets/stylesheets/pdf.scss */
.quotation-page .bank-list {
  border-collapse: collapse;
  font-size: 9pt;
}

/* line 252, app/assets/stylesheets/pdf.scss */
.quotation-page .bank-list td {
  padding: 2px 8px 2px 0;
}

/* line 257, app/assets/stylesheets/pdf.scss */
.quotation-page .payment-note {
  font-size: 9pt;
  margin-bottom: 5px;
}

/* line 263, app/assets/stylesheets/pdf.scss */
.quotation-page .agent-name {
  font-size: 10pt;
  font-weight: bold;
  color: #000;
}

/* line 269, app/assets/stylesheets/pdf.scss */
.quotation-page .agent-detail {
  font-size: 9pt;
  color: #444;
}

/* line 275, app/assets/stylesheets/pdf.scss */
.quotation-page .notice-box {
  background: #fff8f8;
  border: 1px solid #d00;
  border-left-width: 3px;
  padding: 10px 12px;
  margin: 12px 0;
}

/* line 283, app/assets/stylesheets/pdf.scss */
.quotation-page .notice-title {
  font-size: 9pt;
  font-weight: bold;
  color: #c00;
  margin-bottom: 5px;
}

/* line 290, app/assets/stylesheets/pdf.scss */
.quotation-page .notice-list {
  margin: 0;
  padding-left: 15px;
  font-size: 8pt;
  color: #333;
}

/* line 296, app/assets/stylesheets/pdf.scss */
.quotation-page .notice-list li {
  margin-bottom: 3px;
}

/* line 300, app/assets/stylesheets/pdf.scss */
.quotation-page .notice-list strong {
  color: #c00;
}

/* line 306, app/assets/stylesheets/pdf.scss */
.quotation-page .notes-section {
  margin: 10px 0;
}

/* line 310, app/assets/stylesheets/pdf.scss */
.quotation-page .notes-text {
  font-size: 9pt;
  color: #444;
  padding: 5px 8px;
  background: #f9f9f9;
  border-left: 2px solid #888;
}

/* line 319, app/assets/stylesheets/pdf.scss */
.quotation-page .terms-section {
  margin: 10px 0;
}

/* line 323, app/assets/stylesheets/pdf.scss */
.quotation-page .terms-list {
  margin: 0;
  padding-left: 15px;
  font-size: 8pt;
  color: #666;
}

/* line 329, app/assets/stylesheets/pdf.scss */
.quotation-page .terms-list li {
  margin-bottom: 2px;
}

/* line 335, app/assets/stylesheets/pdf.scss */
.quotation-page .footer {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid #ccc;
  text-align: center;
}

/* line 342, app/assets/stylesheets/pdf.scss */
.quotation-page .footer-text {
  font-size: 9pt;
  color: #666;
  font-style: italic;
}

/* Print Styles */
@media print {
  /* line 351, app/assets/stylesheets/pdf.scss */
  .quotation-page {
    padding: 0;
  }
  /* line 355, app/assets/stylesheets/pdf.scss */
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
}
/*Form fields*/
/* line 5, app/assets/stylesheets/vans.scss */
.dataTables_wrapper select,
.dataTables_wrapper .dataTables_filter input {
  color: #4a5568;
  /*text-gray-700*/
  padding-left: 1rem;
  /*pl-4*/
  padding-right: 1rem;
  /*pl-4*/
  padding-top: .5rem;
  /*pl-2*/
  padding-bottom: .5rem;
  /*pl-2*/
  line-height: 1.25;
  /*leading-tight*/
  border-width: 2px;
  /*border-2*/
  border-radius: .25rem;
  border-color: #edf2f7;
  /*border-gray-200*/
  background-color: #edf2f7;
  /*bg-gray-200*/
}

/*Row Hover*/
/* line 20, app/assets/stylesheets/vans.scss */
table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover {
  background-color: #ebf4ff;
  /*bg-indigo-100*/
}

/*Pagination Buttons*/
/* line 25, app/assets/stylesheets/vans.scss */
.dataTables_wrapper .dataTables_paginate .paginate_button {
  font-weight: 700;
  /*font-bold*/
  border-radius: .25rem;
  /*rounded*/
  border: 1px solid transparent;
  /*border border-transparent*/
}

/*Pagination Buttons - Current selected */
/* line 32, app/assets/stylesheets/vans.scss */
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  color: #fff !important;
  /*text-white*/
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  /*shadow*/
  font-weight: 700;
  /*font-bold*/
  border-radius: .25rem;
  /*rounded*/
  background: #667eea !important;
  /*bg-indigo-500*/
  border: 1px solid transparent;
  /*border border-transparent*/
}

/*Pagination Buttons - Hover */
/* line 42, app/assets/stylesheets/vans.scss */
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: #fff !important;
  /*text-white*/
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  /*shadow*/
  font-weight: 700;
  /*font-bold*/
  border-radius: .25rem;
  /*rounded*/
  background: #667eea !important;
  /*bg-indigo-500*/
  border: 1px solid transparent;
  /*border border-transparent*/
}

/*Add padding to bottom border */
/* line 52, app/assets/stylesheets/vans.scss */
table.dataTable.no-footer {
  border-bottom: 1px solid #e2e8f0;
  /*border-b-1 border-gray-300*/
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

/*Change colour of responsive icon*/
/* line 59, app/assets/stylesheets/vans.scss */
table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before, table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {
  background-color: #667eea !important;
  /*bg-indigo-500*/
}

/* line 64, app/assets/stylesheets/vans.scss */
.easy-autocomplete-container {
  margin-left: -1rem;
  margin-right: 1rem;
}

/* line 69, app/assets/stylesheets/vans.scss */
.easy-autocomplete {
  width: 100%;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file are added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

/* High contrast mode support */
@media (prefers-contrast: high) {
  button {
    border: 2px solid currentColor;
  }
  
  .border {
    border-width: 2px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .animate-spin {
    animation: none;
  }
  
  .transition-colors {
    transition: none;
  }
}
