@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #F1F5F9;
  padding: 0;
  min-height: 100vh;
}

/* Top Navigation Bar */
.topbar {
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.topbar-container {
  max-width: 1400px;
  min-height: 60px;
  margin: 0 auto;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-direction: row;
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.topbar-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.topbar-title {
  font-size: 16px;
  font-weight: 600;
  color: #1F2937;
  letter-spacing: 0.3px;
}

.brand-text {
  font-size: 28px;
  font-weight: 700;
  color: #3077D7;
  letter-spacing: 1px;
}

/* Language Switcher */
.language-switcher {
  position: relative;
  display: none; /* Hidden by default on desktop */
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.language-switcher.mobile-only {
  display: none; /* Hidden on desktop */
}

.language-switcher:hover {
  background: #EFF6FF;
  border-color: #3077D7;
}

.current-language {
  font-size: 14px;
  font-weight: 500;
  color: #1F2937;
}

.lang-arrow {
  color: #6B7280;
  transition: transform 0.3s ease;
}

.language-switcher.active .lang-arrow {
  transform: rotate(180deg);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1001;
}

.language-dropdown.show {
  display: flex;
}

.lang-option {
  padding: 10px 16px;
  color: #374151;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  border-bottom: 1px solid #F3F4F6;
}

.lang-option:last-child {
  border-bottom: none;
}

.lang-option:hover {
  background: #EFF6FF;
  color: #3077D7;
}

.lang-option.active {
  background: #3077D7;
  color: #FFFFFF;
  font-weight: 600;
}

/* Desktop Menu */
.desktop-menu {
  display: flex;
}

.topbar-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-link {
  color: #6B7280;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
}

.topbar-link:hover {
  color: #3077D7;
}

.topbar-link.active {
  color: #3077D7;
  font-weight: 600;
}

.topbar-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #3077D7;
  border-radius: 2px;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.hamburger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background: #1F2937;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Dropdown */
.mobile-menu-dropdown {
  display: none;
  flex-direction: column;
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu-dropdown.show {
  max-height: 300px;
}

.mobile-menu-link {
  padding: 16px 22px;
  color: #374151;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #F3F4F6;
  transition: all 0.2s ease;
}

.mobile-menu-link:last-child {
  border-bottom: none;
}

.mobile-menu-link:hover {
  background: #F8FAFC;
  color: #3077D7;
  padding-left: 28px;
}

/* Loading Spinner */
.spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  width: 70px;
  height: 70px;
  border: 6px solid #E2E8F0;
  border-top: 6px solid #3077D7;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.spinner-text {
  color: #333;
  font-size: 18px;
  margin-top: 20px;
  font-weight: 600;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.page-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 20px;
  min-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Search Card */
.search-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #E2E8F0;
  max-width: 600px;
  width: 100%;
  transition: none;
}

.search-card.hide {
  animation: slideOutUp 0.5s ease-in forwards;
}

@keyframes slideOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-100px);
  }
}

.search-card.show {
  animation: slideInDown 0.5s ease-out forwards;
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.search-icon {
  color: #9ca3af;
  font-size: 20px;
}

.search-input {
  flex: 1;
  border: 2px solid #E2E8F0;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
  background: #FFFFFF;
}

.search-input:focus {
  border-color: #3077D7;
  box-shadow: 0 0 0 3px rgba(48, 119, 215, 0.1);
}

.view-btn {
  background: #3077D7;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(48, 119, 215, 0.2);
}

.view-btn:hover {
  background: #2563EB;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(48, 119, 215, 0.3);
}

/* Main Content */
.main-content {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid #E2E8F0;
  opacity: 0;
  transform: translateX(100%);
  transition: none;
}

.main-content.show {
  animation: slideInFromRight 0.6s ease-out forwards;
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.main-content.hide {
  animation: slideOutToLeft 0.5s ease-in forwards;
}

@keyframes slideOutToLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}

.two-column {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 32px;
  margin-top: 24px;
}

/* Left Column - Student Details */
.student-details {
  background: #F9FAFB;
  border-radius: 10px;
  padding: 28px;
  border: 1px solid #E2E8F0;
}

.section-title {
  color: #3077D7;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #E2E8F0;
}

.detail-item {
  margin-bottom: 16px;
}

.detail-label {
  color: #848987;
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.detail-value {
  color: #1F2937;
  font-size: 15px;
  font-weight: 600;
}

.address-section {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 2px solid #E2E8F0;
}

.address-text {
  color: #4B5563;
  font-size: 14px;
  line-height: 1.7;
  margin-top: 8px;
}

/* Right Column - Payment Section */
.payment-section {
  display: flex;
  flex-direction: column;
}

.outstanding-card {
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  border: 2px solid #BFDBFE;
  border-radius: 10px;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(48, 119, 215, 0.08);
}

.outstanding-label {
  color: #1E40AF;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.outstanding-amount {
  color: #3077D7;
  font-size: 24px;
  font-weight: 700;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  color: #374151;
  font-size: 14px;
  font-weight: 600;
  margin-left: auto;
  display: block;
  margin-bottom: 10px;
}

.select-wrapper {
  position: relative;
}

.select-input {
  width: 100%;
  border: 2px solid #E2E8F0;
  border-radius: 8px;
  padding: 13px 40px 13px 16px;
  font-size: 15px;
  outline: none;
  background: #FFFFFF;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.select-input:focus {
  border-color: #3077D7;
  box-shadow: 0 0 0 3px rgba(48, 119, 215, 0.1);
}

.select-wrapper::after {
  content: "▼";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  font-size: 12px;
  pointer-events: none;
}

.course-summary {
  background: #F9FAFB;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.summary-item {
  display: flex;
  flex-direction: column;
}

.summary-label {
  color: #848987;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.summary-value {
  color: #1F2937;
  font-size: 16px;
  font-weight: 700;
}

.summary-value.paid {
  color: #10B981;
}

.summary-value.due {
  color: #DC2626;
}

.amount-input { 
  width: 30%;
  margin-left: auto;
  display: block;
  border: 2px solid #E2E8F0;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 17px;
  font-weight: 600;
  text-align: right;
  outline: none;
  transition: all 0.3s ease;
  background: #FFFFFF;
}

.amount-input:focus {
  border-color: #3077D7;
  box-shadow: 0 0 0 3px rgba(48, 119, 215, 0.1);
}

.pay-btn {
  background: linear-gradient(135deg, #3077D7 0%, #2563EB 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  align-self: flex-end;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(48, 119, 215, 0.25);
}

.pay-btn:hover {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(48, 119, 215, 0.35);
}

.pay-btn:active {
  transform: translateY(0);
}

.pay-icon {
  font-size: 18px;
}

/* Messages */
.info-message {
  text-align: center;
  padding: 20px;
  color: #6b7280;
  font-size: 16px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
}

.error-message {
  background: #FEF2F2;
  border: 2px solid #FECACA;
  border-radius: 10px;
  padding: 28px;
  text-align: center;
  color: #DC2626;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.1);
}

.error-message p {
  margin: 8px 0;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.4s ease;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 20px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  animation: slideUp 0.4s ease;
  border: 1px solid #E2E8F0;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 48px;
}

.modal-icon.success {
  background: #D1FAE5;
  color: #10B981;
}

.modal-icon.failed {
  background: #FEE2E2;
  color: #DC2626;
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1F2937;
}

.modal-message {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.5;
}

.modal-details {
  background: #F9FAFB;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
  text-align: left;
}

.modal-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #E2E8F0;
}

.modal-detail-row:last-child {
  border-bottom: none;
}

.modal-detail-label {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

.modal-detail-value {
  font-size: 14px;
  color: #1F2937;
  font-weight: 600;
}

.modal-btn {
  background: #3077D7;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 2px 8px rgba(48, 119, 215, 0.25);
}

.modal-btn:hover {
  background: #2563EB;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(48, 119, 215, 0.35);
}

.modal-btn:active {
  transform: translateY(0);
}

.modal-btn.secondary {
  background: #6B7280;
  margin-top: 12px;
}

.modal-btn.secondary:hover {
  background: #4B5563;
  box-shadow: 0 6px 16px rgba(107, 114, 128, 0.3);
}

/* Confirmation Modal Styles */
.confirmation-modal {
  max-width: 600px;
  width: 90%;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
}

.modal-title {
  font-size: 22px;
  font-weight: 700;
  color: #1F2937;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.modal-close:hover {
  background: #F3F4F6;
  color: #1F2937;
}

.modal-body {
  padding: 28px;
}

.confirmation-message {
  text-align: center;
  color: #4B5563;
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.confirmation-details {
  background: #F9FAFB;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid #E2E8F0;
}

.confirmation-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #E2E8F0;
}

.confirmation-item:last-child {
  border-bottom: none;
}

.confirmation-item.highlight {
  background: #fff;
  margin: 12px -12px -12px -12px;
  padding: 16px 12px;
  border-radius: 8px;
  border: 2px solid #10B981;
}

.confirmation-label {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

.confirmation-value {
  font-size: 15px;
  color: #1F2937;
  font-weight: 600;
}

.confirmation-value.amount {
  font-size: 20px;
  color: #10B981;
  font-weight: 700;
}

.confirmation-warning {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #FEF3C7;
  border: 1px solid #FBBF24;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 20px;
}

.confirmation-warning svg {
  color: #F59E0B;
  flex-shrink: 0;
  margin-top: 2px;
}

.confirmation-warning span {
  font-size: 13px;
  color: #92400E;
  line-height: 1.5;
}

.modal-footer {
  display: flex;
  gap: 12px;
  padding: 20px 28px;
  border-top: 1px solid #E2E8F0;
  background: #F9FAFB;
  border-radius: 0 0 12px 12px;
}

.btn {
  flex: 1;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cancel {
  background: #FFFFFF;
  color: #6B7280;
  border: 2px solid #E2E8F0;
}

.btn-cancel:hover {
  background: #F3F4F6;
  border-color: #CBD5E1;
  color: #374151;
}

.btn-confirm {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

.btn-confirm:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
}

.btn-confirm:active {
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .two-column {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .search-form {
    flex-direction: column;
  }

  .search-input {
    width: 100%;
  }

  .view-btn {
    width: 100%;
  }
  
  .student-details {
    order: 2;
  }
  
  .payment-section {
    order: 1;
  }
}

@media (max-width: 768px) {
  .topbar-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
  }
  
  .topbar-menu {
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
  }
  
  .brand-text {
    font-size: 24px;
  }
}
/* FAQ and Error Messages Modal Styles */
.info-modal {
  max-width: 650px;
  max-height: 85vh;
  overflow-y: auto;
}

.info-modal .modal-body {
  max-height: 65vh;
  overflow-y: auto;
  padding: 0 30px 30px 30px;
}

/* Accordion Styles */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: #3077D7;
  box-shadow: 0 2px 8px rgba(48, 119, 215, 0.1);
}

.accordion-header {
  width: 100%;
  padding: 16px 20px;
  background: white;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #1E293B;
  text-align: left;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: #F8FAFC;
}

.accordion-item.active .accordion-header {
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  color: #3077D7;
}

.accordion-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #64748B;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: #3077D7;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  background: white;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 0 20px 16px 20px;
}

.accordion-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

/* Error Messages Modal Specific Styles */
.error-intro {
  font-size: 14px;
  color: #475569;
  margin-bottom: 24px;
  line-height: 1.6;
}

.error-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.error-item {
  padding: 20px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.error-item:hover {
  border-color: #3077D7;
  box-shadow: 0 4px 12px rgba(48, 119, 215, 0.1);
  transform: translateY(-2px);
}

.error-code {
  font-size: 16px;
  font-weight: 700;
  color: #DC2626;
  margin-bottom: 8px;
}

.error-description {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 12px;
}

.error-solution {
  font-size: 14px;
  color: #059669;
  line-height: 1.6;
  padding: 12px;
  background: #F0FDF4;
  border-left: 3px solid #059669;
  border-radius: 4px;
}

.error-solution strong {
  color: #047857;
  margin-right: 6px;
}

.support-box {
  margin-top: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  border: 1px solid #BFDBFE;
  border-radius: 8px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.support-box svg {
  flex-shrink: 0;
  color: #3077D7;
  margin-top: 2px;
}

.support-box strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 6px;
}

.support-box p {
  font-size: 14px;
  color: #475569;
  margin: 0;
  line-height: 1.5;
}

/* Modal Scrollbar Styling */
.info-modal .modal-body::-webkit-scrollbar {
  width: 8px;
}

.info-modal .modal-body::-webkit-scrollbar-track {
  background: #F1F5F9;
  border-radius: 4px;
}

.info-modal .modal-body::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}

.info-modal .modal-body::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

/* Responsive for Info Modals */
@media (max-width: 768px) {
  .info-modal {
    max-width: 95%;
    max-height: 90vh;
  }
  
  .info-modal .modal-body {
    padding: 0 20px 20px 20px;
  }
  
  .accordion-header {
    padding: 14px 16px;
    font-size: 14px;
  }
  
  .accordion-content p {
    font-size: 13px;
  }
  
  .error-item {
    padding: 16px;
  }
  
  .error-code {
    font-size: 15px;
  }
  
  .error-description,
  .error-solution {
    font-size: 13px;
  }
  
  .support-box {
    flex-direction: column;
    gap: 12px;
  }
}
/* Responsive Design for Topbar and Customer Receipts */
@media (max-width: 1024px) {
  .topbar-container {
    padding: 10px 16px;
  }
  .topbar-title {
    font-size: 15px;
  }
  .brand-text {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  /* Show hamburger menu, hide desktop menu */
  .hamburger-menu {
    display: flex;
  }
  
  .desktop-menu {
    display: none !important;
  }
  
  .mobile-menu-dropdown {
    display: flex;
  }
  
  /* Show mobile language switcher */
  .language-switcher.mobile-only {
    display: flex;
  }
  
  .topbar-container {
    min-height: 60px;
    padding: 12px 20px;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px;
  }
  
  .topbar-brand {
    flex: 0 0 auto;
    order: 1;
  }
  
  .topbar-logo {
    height: 45px;
  }
  
  .brand-text {
    font-size: 20px;
  }
  
  .topbar-title {
    font-size: 13px;
  }
  
  .language-switcher {
    flex: 1 1 auto;
    order: 2;
    padding: 8px 12px;
    max-width: 90px;
    border: 1px solid #D1D5DB;
    background: #FFFFFF;
  }
  
  .current-language {
    font-size: 14px;
    font-weight: 500;
  }
  
  .lang-arrow {
    width: 16px;
    height: 16px;
  }
  
  .hamburger-menu {
    flex: 0 0 auto;
    order: 3;
  }
}

@media (max-width: 480px) {
  .topbar-container {
    padding: 10px 16px;
    min-height: 56px;
    gap: 12px;
  }
  
  .topbar-logo {
    height: 38px;
  }
  
  .brand-text {
    font-size: 16px;
  }
  
  .topbar-title {
    font-size: 11px;
  }
  
  .current-language {
    font-size: 13px;
  }
  
  .lang-arrow {
    width: 14px;
    height: 14px;
  }
  
  .hamburger-menu span {
    width: 22px;
  }
}

/* Responsive adjustments for customer receipts main content */
@media (max-width: 1024px) {
  .receipts-container {
    padding: 18px 8px;
  }
}

@media (max-width: 768px) {
  .receipts-container {
    padding: 10px 2px;
  }
  .receipts-table th,
  .receipts-table td {
    font-size: 13px;
    padding: 6px 4px;
  }
  .receipts-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .search-box {
    width: 100%;
    margin-bottom: 8px;
  }
  .filter-group {
    flex-direction: column;
    gap: 6px;
  }
  .pagination {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .receipts-table th,
  .receipts-table td {
    font-size: 11px;
    padding: 4px 2px;
  }
  .receipts-header {
    gap: 4px;
  }
  .search-box input {
    font-size: 12px;
    padding: 4px 6px;
  }
}