@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 */
@media (max-width: 640px) {
  .sm\:hidden { display: none; }
}

@media (min-width: 640px) {
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
  .sm\:items-center { align-items: center; }
  .sm\:justify-between { justify-content: space-between; }
  .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; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:flex-row { flex-direction: row; }
  .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\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:items-center { align-items: center; }
  .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\:hidden { display: none; }
  .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%; }
}

/* 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;
  }
}

*/
/* PDF Styles with Tailwind-inspired design */
/* line 2, app/assets/stylesheets/pdf.scss */
.pdf-document {
  font-family: 'Helvetica', Arial, sans-serif !important;
  /* Use web-safe fonts */
  font-size: 13px !important;
  /* Larger base font size */
  line-height: 1.3 !important;
  color: #374151;
  /* gray-700 */
  margin: 0;
  padding: 0;
  /* Removed padding that could cause inconsistencies */
  background-color: #fff;
  -webkit-print-color-adjust: exact !important;
  color-adjust: exact !important;
  /* Page container style */
  /* First page specific styles */
  /* Last page should not have a page break after */
  /* Card-based layout */
  /* Information tables */
  /* Add styles for proper image rendering in wkhtmltopdf */
  /* Explicit page break control */
}

/* line 14, app/assets/stylesheets/pdf.scss */
.pdf-document .page {
  margin: 0;
  padding: 10px;
  box-sizing: border-box;
  position: relative;
  page-break-after: always;
  margin-bottom: 10px;
  /* Reduced space between pages */
  clear: both;
}

/* line 26, app/assets/stylesheets/pdf.scss */
.pdf-document .first-page .page-content-wrapper {
  page-break-inside: avoid !important;
  break-inside: avoid !important;
}

/* line 33, app/assets/stylesheets/pdf.scss */
.pdf-document .page:last-child {
  page-break-after: avoid;
  margin-bottom: 0;
}

/* line 38, app/assets/stylesheets/pdf.scss */
.pdf-document .container {
  max-width: 100%;
  margin: 0 auto;
}

/* line 43, app/assets/stylesheets/pdf.scss */
.pdf-document .header {
  margin-bottom: 10px;
}

/* line 46, app/assets/stylesheets/pdf.scss */
.pdf-document .header .header-content {
  display: flex;
  align-items: flex-start;
  /* Changed from center to avoid alignment issues */
  justify-content: space-between;
  flex-wrap: nowrap;
  /* Prevent wrapping that causes alignment issues */
}

/* line 52, app/assets/stylesheets/pdf.scss */
.pdf-document .header .header-content .logo-section {
  margin-bottom: 8px;
  width: 50%;
}

/* line 56, app/assets/stylesheets/pdf.scss */
.pdf-document .header .header-content .logo-section .logos-container {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 8px;
}

/* line 62, app/assets/stylesheets/pdf.scss */
.pdf-document .header .header-content .logo-section .logos-container .logo {
  height: 40px;
  width: auto;
}

/* line 69, app/assets/stylesheets/pdf.scss */
.pdf-document .header .header-content .logo-section .company-title h2 {
  font-size: 16px;
  font-weight: 600;
  color: #1F2937;
  /* gray-800 */
  margin: 0 0 1px 0;
}

/* line 76, app/assets/stylesheets/pdf.scss */
.pdf-document .header .header-content .logo-section .company-title .subtitle {
  font-size: 11px;
  color: #6B7280;
  /* gray-500 */
  margin: 0;
}

/* line 84, app/assets/stylesheets/pdf.scss */
.pdf-document .header .header-content .title-section {
  width: 50%;
  text-align: left;
}

/* line 88, app/assets/stylesheets/pdf.scss */
.pdf-document .header .header-content .title-section h2 {
  font-size: 18px !important;
  color: #1E40AF;
  /* blue-800 */
  margin: 0 0 4px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: left !important;
}

/* line 98, app/assets/stylesheets/pdf.scss */
.pdf-document .header .header-content .title-section .quotation-number {
  font-size: 13px;
  color: #1F2937;
  /* gray-800 */
  margin: 2px 0;
  text-align: left !important;
}

/* line 105, app/assets/stylesheets/pdf.scss */
.pdf-document .header .header-content .title-section .date, .pdf-document .header .header-content .title-section .valid-until {
  color: #6B7280;
  /* gray-500 */
  margin: 2px 0;
  font-size: 13px;
  text-align: left !important;
}

/* line 115, app/assets/stylesheets/pdf.scss */
.pdf-document .divider {
  border: none;
  border-top: 1px solid #1E40AF;
  /* blue-800 */
  margin: 6px 0;
  clear: both;
}

/* line 123, app/assets/stylesheets/pdf.scss */
.pdf-document .card {
  margin-bottom: 10px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  border: 1px solid #E5E7EB;
  /* gray-200 */
}

/* line 131, app/assets/stylesheets/pdf.scss */
.pdf-document .card h3 {
  font-size: 14px !important;
  /* Increased font size */
  color: #1E40AF;
  /* blue-800 */
  margin: 0;
  padding: 8px 10px;
  background-color: #EFF6FF;
  /* blue-50 */
  border-bottom: 1px solid #DBEAFE;
  /* blue-100 */
  font-weight: 600;
  text-transform: uppercase;
}

/* line 142, app/assets/stylesheets/pdf.scss */
.pdf-document .card .card-content {
  padding: 10px;
  background-color: #fff;
}

/* line 148, app/assets/stylesheets/pdf.scss */
.pdf-document .flex-container {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

/* line 153, app/assets/stylesheets/pdf.scss */
.pdf-document .flex-container .column {
  flex: 1;
}

/* line 159, app/assets/stylesheets/pdf.scss */
.pdf-document .info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  table-layout: fixed !important;
}

/* line 165, app/assets/stylesheets/pdf.scss */
.pdf-document .info-table tr {
  border-bottom: 1px solid #F3F4F6;
  /* gray-100 */
}

/* line 168, app/assets/stylesheets/pdf.scss */
.pdf-document .info-table tr:last-child {
  border-bottom: none;
}

/* line 173, app/assets/stylesheets/pdf.scss */
.pdf-document .info-table td {
  padding: 6px 8px;
  vertical-align: top;
  font-size: 13px !important;
}

/* line 178, app/assets/stylesheets/pdf.scss */
.pdf-document .info-table td:first-child {
  width: 35%;
  font-weight: 600;
  color: #4B5563;
  /* gray-600 */
}

/* line 184, app/assets/stylesheets/pdf.scss */
.pdf-document .info-table td:last-child {
  width: 65%;
  color: #1F2937;
  /* gray-800 */
}

/* line 191, app/assets/stylesheets/pdf.scss */
.pdf-document .info-table .badge-cell .badge {
  display: inline-block;
  background-color: #EFF6FF;
  /* blue-50 */
  border: 1px solid #DBEAFE;
  /* blue-100 */
  color: #1E40AF;
  /* blue-800 */
  padding: 3px 6px;
  border-radius: 3px;
  font-weight: 500;
  font-size: 13px !important;
}

/* line 204, app/assets/stylesheets/pdf.scss */
.pdf-document .pricing-details {
  /* Ensure pricing details don't break across pages */
  page-break-inside: avoid !important;
  break-inside: avoid !important;
}

/* line 209, app/assets/stylesheets/pdf.scss */
.pdf-document .pricing-details .pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  table-layout: fixed !important;
  /* Force fixed layout */
  /* Special rows */
}

/* line 215, app/assets/stylesheets/pdf.scss */
.pdf-document .pricing-details .pricing-table th, .pdf-document .pricing-details .pricing-table td {
  padding: 8px 10px;
  /* Increased padding */
  border-bottom: 1px solid #E5E7EB;
  /* gray-200 */
  vertical-align: middle !important;
  overflow: visible !important;
  /* Changed from hidden to visible */
  word-break: normal;
  /* Allow normal word breaking */
  font-size: 13px !important;
}

/* line 224, app/assets/stylesheets/pdf.scss */
.pdf-document .pricing-details .pricing-table th {
  background-color: #1E40AF;
  /* blue-800 */
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 231, app/assets/stylesheets/pdf.scss */
.pdf-document .pricing-details .pricing-table th:first-child {
  text-align: left !important;
  width: 60% !important;
  font-size: 13px !important;
}

/* line 237, app/assets/stylesheets/pdf.scss */
.pdf-document .pricing-details .pricing-table th:last-child {
  text-align: right !important;
  width: 40% !important;
  font-size: 12px !important;
  padding-right: 15px !important;
  letter-spacing: -0.2px !important;
}

/* line 247, app/assets/stylesheets/pdf.scss */
.pdf-document .pricing-details .pricing-table tbody tr:nth-child(even) {
  background-color: #F9FAFB;
  /* gray-50 */
}

/* line 252, app/assets/stylesheets/pdf.scss */
.pdf-document .pricing-details .pricing-table .amount {
  text-align: right !important;
  font-family: 'Courier New', monospace;
  font-weight: 500;
  width: 40% !important;
  /* Increased width */
}

/* line 258, app/assets/stylesheets/pdf.scss */
.pdf-document .pricing-details .pricing-table .amount.discount {
  color: #DC2626;
  /* red-600 */
}

/* line 265, app/assets/stylesheets/pdf.scss */
.pdf-document .pricing-details .pricing-table .discount-row td {
  color: #DC2626;
  /* red-600 */
  background-color: #FEF2F2;
  /* red-50 */
}

/* line 268, app/assets/stylesheets/pdf.scss */
.pdf-document .pricing-details .pricing-table .discount-row td:first-child {
  width: 60% !important;
  /* Adjusted width */
  overflow: hidden;
  white-space: normal;
  /* Allow word wrapping */
  word-wrap: break-word;
  /* Make sure words break */
}

/* line 277, app/assets/stylesheets/pdf.scss */
.pdf-document .pricing-details .pricing-table .subtotal-row td {
  background-color: #F9FAFB;
  /* gray-50 */
  color: #4B5563;
  /* gray-600 */
  font-weight: 500;
  padding-top: 8px;
}

/* line 284, app/assets/stylesheets/pdf.scss */
.pdf-document .pricing-details .pricing-table .additional-costs-row td {
  background-color: #F9FAFB;
  /* gray-50 */
  color: #4B5563;
  /* gray-600 */
  font-weight: 500;
}

/* line 291, app/assets/stylesheets/pdf.scss */
.pdf-document .pricing-details .pricing-table .total-row td {
  border-top: 1px solid #1E40AF;
  /* blue-800 */
  border-bottom: none;
  background-color: #EFF6FF;
  /* blue-50 */
  font-weight: 700;
  color: #1E40AF;
  /* blue-800 */
  font-size: 14px !important;
  padding: 8px 10px;
}

/* line 304, app/assets/stylesheets/pdf.scss */
.pdf-document .inclusions {
  /* Ensure inclusions don't break across pages */
  page-break-inside: avoid !important;
  break-inside: avoid !important;
}

/* line 309, app/assets/stylesheets/pdf.scss */
.pdf-document .inclusions .items-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  /* Reduced from 8px */
  justify-content: flex-start;
}

/* line 316, app/assets/stylesheets/pdf.scss */
.pdf-document .inclusions .items-list {
  list-style-type: none;
  padding-left: 0;
  margin: 2px 0;
  flex: 1;
  min-width: 120px;
  max-width: 200px;
  /* Increased width to accommodate longer text */
}

/* line 324, app/assets/stylesheets/pdf.scss */
.pdf-document .inclusions .items-list li {
  margin-bottom: 6px;
  padding: 0;
  position: relative;
  line-height: 1.4;
  white-space: nowrap;
  /* Prevent wrapping */
  overflow: visible;
  font-size: 13px !important;
}

/* line 333, app/assets/stylesheets/pdf.scss */
.pdf-document .inclusions .items-list li .checkmark {
  color: #10B981;
  /* emerald-500 */
  font-weight: bold;
  margin-right: 5px;
}

/* line 342, app/assets/stylesheets/pdf.scss */
.pdf-document .notes {
  /* Ensure notes don't break across pages */
  page-break-inside: avoid !important;
  break-inside: avoid !important;
}

/* line 348, app/assets/stylesheets/pdf.scss */
.pdf-document .notes .notes-content p {
  margin: 0 0 4px;
}

/* line 351, app/assets/stylesheets/pdf.scss */
.pdf-document .notes .notes-content p:last-child {
  margin-bottom: 0;
}

/* line 358, app/assets/stylesheets/pdf.scss */
.pdf-document .terms {
  /* Ensure terms don't break across pages */
  page-break-inside: avoid !important;
  break-inside: avoid !important;
}

/* line 363, app/assets/stylesheets/pdf.scss */
.pdf-document .terms .terms-list {
  padding-left: 20px;
  margin: 5px 0;
}

/* line 367, app/assets/stylesheets/pdf.scss */
.pdf-document .terms .terms-list li {
  margin-bottom: 8px;
  padding-left: 5px;
  color: #4B5563;
  /* gray-600 */
  position: relative;
  font-size: 13px !important;
}

/* line 377, app/assets/stylesheets/pdf.scss */
.pdf-document .signature-section {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
  gap: 15px;
}

/* line 383, app/assets/stylesheets/pdf.scss */
.pdf-document .signature-section .signature-line {
  flex: 1;
  text-align: center;
}

/* line 387, app/assets/stylesheets/pdf.scss */
.pdf-document .signature-section .signature-line .line {
  border-bottom: 1px solid #000;
  margin-bottom: 2px;
  height: 20px;
}

/* line 393, app/assets/stylesheets/pdf.scss */
.pdf-document .signature-section .signature-line p {
  margin: 2px 0;
  color: #6B7280;
  /* gray-500 */
  font-size: 6px;
}

/* line 401, app/assets/stylesheets/pdf.scss */
.pdf-document .footer {
  /* Ensure footer doesn't break across pages */
  page-break-inside: avoid !important;
  break-inside: avoid !important;
  margin-top: 15px;
  text-align: center;
  border-top: 1px solid #1E40AF;
  /* blue-800 */
  padding-top: 6px;
}

/* line 411, app/assets/stylesheets/pdf.scss */
.pdf-document .footer .footer-content .address {
  margin-bottom: 2px;
  color: #4B5563;
  /* gray-600 */
}

/* line 416, app/assets/stylesheets/pdf.scss */
.pdf-document .footer .footer-content .contact-info {
  color: #4B5563;
  /* gray-600 */
  font-size: 6px;
}

/* line 421, app/assets/stylesheets/pdf.scss */
.pdf-document .footer .footer-content .copyright {
  margin-top: 4px;
  color: #9CA3AF;
  /* gray-400 */
  font-size: 5px;
}

/* line 430, app/assets/stylesheets/pdf.scss */
.pdf-document img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* line 436, app/assets/stylesheets/pdf.scss */
.pdf-document .page-break {
  page-break-before: always;
  height: 1px;
  clear: both;
}

@media print {
  /* line 2, app/assets/stylesheets/pdf.scss */
  .pdf-document {
    /* Override all page break controls for our own explicit control */
    /* Make the page breaks explicit and controlled */
    /* Ensure consistent table layouts */
  }
  /* line 444, app/assets/stylesheets/pdf.scss */
  .pdf-document * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  /* line 450, app/assets/stylesheets/pdf.scss */
  .pdf-document .page {
    page-break-after: always;
    page-break-inside: avoid;
    break-inside: avoid;
  }
  /* line 456, app/assets/stylesheets/pdf.scss */
  .pdf-document .page:last-child {
    page-break-after: auto;
  }
  /* line 461, app/assets/stylesheets/pdf.scss */
  .pdf-document table {
    table-layout: fixed;
  }
}

/* line 466, app/assets/stylesheets/pdf.scss */
.pdf-document .bank-details {
  page-break-inside: avoid !important;
  break-inside: avoid !important;
  margin-bottom: 10px;
}

/* line 471, app/assets/stylesheets/pdf.scss */
.pdf-document .bank-details h3 {
  font-size: 14px !important;
  color: #1E40AF;
  /* blue-800 */
  margin: 0;
  padding: 8px 10px;
  background-color: #EFF6FF;
  /* blue-50 */
  border-bottom: 1px solid #DBEAFE;
  /* blue-100 */
  font-weight: 600;
  text-transform: uppercase;
}

/* line 482, app/assets/stylesheets/pdf.scss */
.pdf-document .bank-details .card-content {
  padding: 10px;
}

/* line 485, app/assets/stylesheets/pdf.scss */
.pdf-document .bank-details .card-content p {
  margin-bottom: 8px;
  font-size: 13px !important;
}

/* line 491, app/assets/stylesheets/pdf.scss */
.pdf-document .bank-details .card-content .info-table td {
  padding: 6px 8px;
  vertical-align: top;
  font-size: 13px !important;
}

/* line 496, app/assets/stylesheets/pdf.scss */
.pdf-document .bank-details .card-content .info-table td:first-child {
  width: 25% !important;
  font-weight: 600;
  color: #1E40AF;
  /* blue-800 */
}
/*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%;
}
/*
 * easy-autocomplete
 * jQuery plugin for autocompletion
 * 
 * @author Łukasz Pawełczak (http://github.com/pawelczak)
 * @version 1.3.5
 * Copyright  License: 
 */

.easy-autocomplete {
  position: relative;
}
.easy-autocomplete input {
  border-color: #ccc;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
  color: #555;
  float: none;
  padding: 6px 12px;
}
.easy-autocomplete input:hover, .easy-autocomplete input:focus {
  box-shadow: none;
}
.easy-autocomplete a {
  display: block;
}
.easy-autocomplete.eac-blue-light input:hover, .easy-autocomplete.eac-blue-light input:focus {
  border-color: #66afe9;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
}
.easy-autocomplete.eac-blue-light ul {
  border-color: #66afe9;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
}
.easy-autocomplete.eac-blue-light ul li, .easy-autocomplete.eac-blue-light ul .eac-category {
  border-color: #66afe9;
}
.easy-autocomplete.eac-blue-light ul li.selected, .easy-autocomplete.eac-blue-light ul .eac-category.selected {
  background-color: #ecf5fc;
}
.easy-autocomplete.eac-green-light input:hover, .easy-autocomplete.eac-green-light input:focus {
  border-color: #41DB00;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(146, 237, 107, 0.6);
}
.easy-autocomplete.eac-green-light ul {
  border-color: #41DB00;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(146, 237, 107, 0.6);
}
.easy-autocomplete.eac-green-light ul li, .easy-autocomplete.eac-green-light ul .eac-category {
  border-color: #41DB00;
}
.easy-autocomplete.eac-green-light ul li.selected, .easy-autocomplete.eac-green-light ul .eac-category.selected {
  background-color: #9eff75;
}
.easy-autocomplete.eac-red-light input:hover, .easy-autocomplete.eac-red-light input:focus {
  border-color: #ff5b5b;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 90, 90, 0.6);
}
.easy-autocomplete.eac-red-light ul {
  border-color: #ff5b5b;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 90, 90, 0.6);
}
.easy-autocomplete.eac-red-light ul li, .easy-autocomplete.eac-red-light ul .eac-category {
  border-color: #ff5b5b;
}
.easy-autocomplete.eac-red-light ul li.selected, .easy-autocomplete.eac-red-light ul .eac-category.selected {
  background-color: #ff8e8e;
}
.easy-autocomplete.eac-yellow-light input:hover, .easy-autocomplete.eac-yellow-light input:focus {
  border-color: #ffdb00;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 231, 84, 0.6);
}
.easy-autocomplete.eac-yellow-light ul {
  border-color: #ffdb00;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 231, 84, 0.6);
}
.easy-autocomplete.eac-yellow-light ul li, .easy-autocomplete.eac-yellow-light ul .eac-category {
  border-color: #ffdb00;
}
.easy-autocomplete.eac-yellow-light ul li.selected, .easy-autocomplete.eac-yellow-light ul .eac-category.selected {
  background-color: #ffe233;
}
.easy-autocomplete.eac-dark-light input:hover, .easy-autocomplete.eac-dark-light input:focus {
  border-color: #333;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(55, 55, 55, 0.6);
}
.easy-autocomplete.eac-dark-light ul {
  border-color: #333;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(55, 55, 55, 0.6);
}
.easy-autocomplete.eac-dark-light ul li, .easy-autocomplete.eac-dark-light ul .eac-category {
  border-color: #333;
}
.easy-autocomplete.eac-dark-light ul li.selected, .easy-autocomplete.eac-dark-light ul .eac-category.selected {
  background-color: #4d4d4d;
  color: #fff;
}
.easy-autocomplete.eac-dark {
  color: #fff;
}
.easy-autocomplete.eac-dark input {
  background-color: #404040;
  border-radius: 4px;
  box-shadow: 0;
  color: #f6f6f6;
}
.easy-autocomplete.eac-dark input:hover, .easy-autocomplete.eac-dark input:focus {
  border-color: #333;
  box-shadow: 0;
}
.easy-autocomplete.eac-dark ul {
  border-color: #333;
}
.easy-autocomplete.eac-dark ul li, .easy-autocomplete.eac-dark ul .eac-category {
  background-color: #404040;
  border-color: #333;
}
.easy-autocomplete.eac-dark ul li.selected, .easy-autocomplete.eac-dark ul .eac-category.selected {
  background-color: #737373;
  color: #f6f6f6;
}
.easy-autocomplete.eac-dark-glass {
  color: #fff;
}
.easy-autocomplete.eac-dark-glass input {
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 4px;
  box-shadow: 0;
  color: #f6f6f6;
}
.easy-autocomplete.eac-dark-glass input:hover, .easy-autocomplete.eac-dark-glass input:focus {
  border-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0;
}
.easy-autocomplete.eac-dark-glass ul {
  border-color: rgba(0, 0, 0, 0.8);
}
.easy-autocomplete.eac-dark-glass ul li, .easy-autocomplete.eac-dark-glass ul .eac-category {
  background-color: rgba(0, 0, 0, 0.8);
  border-color: rgba(0, 0, 0, 0.8);
}
.easy-autocomplete.eac-dark-glass ul li.selected, .easy-autocomplete.eac-dark-glass ul .eac-category.selected {
  background-color: rgba(64, 64, 64, 0.8);
  color: #f6f6f6;
}
.easy-autocomplete.eac-dark-glass ul li:last-child, .easy-autocomplete.eac-dark-glass ul .eac-category:last-child {
  border-radius: 0 0 4px 4px;
}
.easy-autocomplete.eac-blue {
  color: #fff;
}
.easy-autocomplete.eac-blue input {
  background-color: #6d9ed1;
  border-radius: 4px;
  box-shadow: 0;
  color: #f6f6f6;
}
.easy-autocomplete.eac-blue input::-webkit-input-placeholder {
  color: #f6f6f6;
}
.easy-autocomplete.eac-blue input:-moz-placeholder {
  color: #f6f6f6;
}
.easy-autocomplete.eac-blue input::-moz-placeholder {
  color: #f6f6f6;
}
.easy-autocomplete.eac-blue input:-ms-input-placeholder {
  color: #f6f6f6;
}
.easy-autocomplete.eac-blue input:hover, .easy-autocomplete.eac-blue input:focus {
  border-color: #5A91CB;
  box-shadow: 0;
}
.easy-autocomplete.eac-blue ul {
  border-color: #5A91CB;
}
.easy-autocomplete.eac-blue ul li, .easy-autocomplete.eac-blue ul .eac-category {
  background-color: #6d9ed1;
  border-color: #5A91CB;
}
.easy-autocomplete.eac-blue ul li.selected, .easy-autocomplete.eac-blue ul .eac-category.selected {
  background-color: #94b8dd;
  color: #f6f6f6;
}
.easy-autocomplete.eac-yellow {
  color: #333;
}
.easy-autocomplete.eac-yellow input {
  background-color: #ffdb7e;
  border-color: #333;
  border-radius: 4px;
  box-shadow: 0;
  color: #333;
}
.easy-autocomplete.eac-yellow input:hover, .easy-autocomplete.eac-yellow input:focus {
  border-color: #333;
  box-shadow: 0;
}
.easy-autocomplete.eac-yellow ul {
  border-color: #333;
}
.easy-autocomplete.eac-yellow ul li, .easy-autocomplete.eac-yellow ul .eac-category {
  background-color: #ffdb7e;
  border-color: #333;
}
.easy-autocomplete.eac-yellow ul li.selected, .easy-autocomplete.eac-yellow ul .eac-category.selected {
  background-color: #ffe9b1;
  color: #333;
}
.easy-autocomplete.eac-purple {
  color: #333;
}
.easy-autocomplete.eac-purple input {
  background-color: #d6d1e7;
  border-color: #b8afd5;
  box-shadow: 0;
  color: #333;
}
.easy-autocomplete.eac-purple input:hover, .easy-autocomplete.eac-purple input:focus {
  border-color: #333;
  box-shadow: 0;
}
.easy-autocomplete.eac-purple ul {
  border-color: #333;
}
.easy-autocomplete.eac-purple ul li, .easy-autocomplete.eac-purple ul .eac-category {
  background-color: #d6d1e7;
  border-color: #333;
}
.easy-autocomplete.eac-purple ul li.selected, .easy-autocomplete.eac-purple ul .eac-category.selected {
  background-color: #ebe8f3;
  color: #333;
}
.easy-autocomplete.eac-bootstrap input {
  border-color: #ccc;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  color: #555;
  padding: 6px 12px;
}

.easy-autocomplete-container {
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}
.easy-autocomplete-container ul {
  background: none repeat scroll 0 0 #ffffff;
  border-top: 1px dotted #ccc;
  display: none;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  position: relative;
  top: -1px;
}
.easy-autocomplete-container ul li, .easy-autocomplete-container ul .eac-category {
  background: inherit;
  border-color: #ccc;
  border-image: none;
  border-style: solid;
  border-width: 0 1px;
  display: block;
  font-size: 14px;
  font-weight: normal;
  padding: 4px 12px;
}
.easy-autocomplete-container ul li:last-child {
  border-radius: 0 0 2px 2px;
  border-width: 0 1px 1px;
}
.easy-autocomplete-container ul li.selected {
  background: none repeat scroll 0 0 #ebebeb;
  cursor: pointer;
}
.easy-autocomplete-container ul li.selected div {
  font-weight: normal;
}
.easy-autocomplete-container ul li div {
  display: block;
  font-weight: normal;
  word-break: break-all;
}
.easy-autocomplete-container ul li b {
  font-weight: bold;
}
.easy-autocomplete-container ul .eac-category {
  font-color: #aaa;
  font-style: italic;
}

.eac-description .eac-item span {
  color: #aaa;
  font-style: italic;
  font-size: 0.9em;
}

.eac-icon-left .eac-item img {
  margin-right: 4px;
  max-height: 30px;
}

.eac-icon-right .eac-item {
  margin-top: 8px;
  min-height: 24px;
  position: relative;
}
.eac-icon-right .eac-item img {
  margin-left: 4px;
  max-height: 30px;
  position: absolute;
  right: -4px;
  top: -8px;
}

/*# sourceMappingURL=easy-autocomplete.css.map */
/*
 * 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 should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *



 */

/* reCAPTCHA responsive styles */
.g-recaptcha {
  transform-origin: center;
  -webkit-transform-origin: center;
  margin: 0 auto;
  max-width: 100%;
}

@media screen and (max-width: 480px) {
  .g-recaptcha {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
  }
}

@media screen and (max-width: 340px) {
  .g-recaptcha {
    transform: scale(0.85);
    -webkit-transform: scale(0.85);
  }
}
