@import url("https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;600;700;800&display=swap");

:root {
  --indigo-50: #e0f2f7;
  --indigo-100: #b3e0f0;
  --indigo-500: #0087bd;
  --indigo-600: #006994;
  --indigo-700: #004d6e;

  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;

  --white: #ffffff;
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-200: #a7f3d0;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --red-50: #fef2f2;
  --red-500: #ef4444;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Vazirmatn", sans-serif;
  background: var(--slate-50);
  color: var(--slate-800);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  overflow-x: hidden;
}

.app-shell {
  width: 100%;
  max-width: 98%;
  min-width: 0;
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(148, 163, 184, 0.4);
  border: 1px solid var(--slate-100);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1400px) {
  .app-shell {
    max-width: 1600px;
  }
}

@media (min-width: 900px) {
  .app-shell {
    flex-direction: row;
    min-height: 650px;
  }
}

.sleek-sidebar {
  background-color: #0369a1;
  color: var(--white);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.sleek-sidebar > * {
  position: relative;
  z-index: 5;
}
.sleek-sidebar > .ocean-bg {
  z-index: 1;
}
@media (min-width: 900px) {
  .sleek-sidebar {
    width: 320px;
  }
}

.sleek-sidebar-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.sleek-sidebar h1 {
  font-size: 1.875rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.sleek-sidebar p {
  color: var(--indigo-100);
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0 0 2rem 0;
  opacity: 0.9;
}

.sleek-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sleek-steps li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.sleek-steps li.faded {
  opacity: 0.5;
}

.sleek-steps li.done .step-circle {
  background: white;
  color: var(--indigo-600);
  font-weight: 900;
  font-size: 13px;
}

.step-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.version-text {
  margin-top: auto;
  padding-top: 3rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
  justify-content: center;
  text-align: center;
}

.sleek-content {
  flex: 1;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  padding: 1rem;
  background: transparent;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (min-width: 900px) {
  .sleek-content {
    min-height: 700px;
    padding: 2rem;
  }
}

.sleek-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.sleek-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--slate-800);
  margin: 0;
}

.badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

button, input, select, textarea {
  font-family: inherit;
}

.badge {
  padding: 0.25rem 0.75rem;
  background: var(--indigo-50);
  color: var(--indigo-600);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  border: none;
  cursor: pointer;
}
.badge:hover {
  background: var(--indigo-100);
}

.badge.upload {
  cursor: pointer;
  background: var(--slate-50);
  border: 1px dashed var(--slate-300);
  color: var(--slate-600);
}

.link-grid-compact {
  margin: 0.5rem 0;
}

.bank-link-compact {
  display: none;
}

.bank-link strong {
  color: var(--slate-700);
  font-size: 0.875rem;
}

.bank-link span {
  color: var(--slate-400);
  font-size: 0.75rem;
}

#excelUpload,
.data-table-wrap {
  display: none;
}

.guided-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.step-badge {
  padding: 0.25rem 0.6rem;
  background: var(--indigo-50);
  color: var(--indigo-600);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
}

.step-track {
  display: flex;
  gap: 4px;
  flex: 1;
  margin-right: 1rem;
  max-width: 200px;
}

.step-track span {
  flex: 1;
  height: 4px;
  background: var(--slate-200);
  border-radius: 999px;
}

.step-track span.active {
  background: var(--indigo-600);
}

.field-container {
  background: var(--slate-50);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--slate-100);
}

.field-container label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--slate-600);
  font-weight: 500;
}

.sleek-input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 0.75rem;
  font-size: 1rem;
  color: var(--slate-800);
  font-family: inherit;
  transition: all 0.2s;
  outline: none;
}

.sleek-input::placeholder {
  color: var(--slate-400);
}

.sleek-input:focus {
  border-color: var(--indigo-500);
  box-shadow: 0 0 0 3px var(--indigo-50);
}

.sleek-input[readonly] {
  background: var(--slate-100);
  color: var(--slate-500);
}

td > .sleek-input, td > input:not([type="hidden"]), td > select {
  field-sizing: content;
  min-width: 4rem !important;
  width: auto !important;
  max-width: 100% !important;
  padding: 0.5rem !important;
  font-size: 0.875rem !important;
  text-align: center;
  border: 1px solid var(--slate-200);
  border-radius: 0.5rem;
  outline: none;
  font-family: inherit;
  background: var(--white);
  color: var(--slate-800);
  transition: all 0.2s;
}

td > input:not([type="hidden"]):focus, td > select:focus, td > .sleek-input:focus {
  border-color: var(--indigo-500);
  box-shadow: 0 0 0 2px var(--indigo-50);
}

.field-hint {
  font-size: 0.75rem; 
  color: var(--slate-600);
  margin-top: 0.5rem;
  margin-bottom: 0;
  min-height: 1.2rem;
}

.form-notice {
  font-size: 0.875rem;
  color: var(--slate-500);
  margin-top: 1rem;
  margin-bottom: 0;
  padding: 1.25rem;
  background: var(--white);
  border-radius: 0.75rem;
  border: 2px solid var(--slate-200);
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.input-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Mobile View Styles */
body.is-mobile-device {
  background-color: #f8fafc;
  overflow-x: hidden;
}

.mobile-view {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.mobile-home-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.mobile-actions-stack {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-card-btn {
  background: var(--white);
  border-radius: 2.5rem;
  padding: 3rem 2rem;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.mobile-card-btn:active {
  transform: scale(0.96);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.card-icon {
  font-size: 3.5rem;
  line-height: 1;
}

.card-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1e293b;
}

.mobile-home-footer {
  padding: 2rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: -0.01em;
}

/* Mobile Wizard */
.mobile-wiz-header {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--white);
  border-bottom: 1px solid var(--slate-100);
  position: sticky;
  top: 0;
  z-index: 100;
}

.close-wiz {
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--slate-100);
  color: var(--slate-600);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.current-step-info { text-align: center; font-weight: 600; font-size: 0.875rem; color: var(--slate-500); }

.wiz-progress {
  height: 4px;
  background: var(--slate-100);
  border-radius: 2px;
  overflow: hidden;
}

#mobProgress {
  height: 100%;
  background: var(--blue-600);
  transition: width 0.3s ease;
}

.mobile-wiz-body {
  padding: 2rem 1.5rem;
  flex: 1;
}

.mob-step label {
  display: block;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--slate-800);
}

.mob-input {
  width: 100%;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 2px solid var(--slate-100);
  font-size: 1.15rem;
  outline: none;
  transition: border-color 0.2s;
}

.mob-input:focus { border-color: var(--blue-500); }

.mob-res-box {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 1rem;
  font-weight: 600;
  text-align: center;
}

.mob-res-box.success { background: var(--emerald-50); color: var(--emerald-700); }
.mob-res-box.error { background: var(--rose-50); color: var(--rose-700); }
.mob-res-box.info { background: var(--blue-50); color: var(--blue-700); }

.mobile-wiz-footer {
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  background: var(--white);
  border-top: 1px solid var(--slate-100);
  position: sticky;
  bottom: 0;
}

.btn-mob {
  flex: 1;
  padding: 1.15rem;
  border-radius: 1rem;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}

.btn-mob.primary { background: var(--blue-600); color: white; }
.btn-mob.success { background: var(--emerald-500); color: white; }
.btn-mob.secondary { background: var(--slate-100); color: var(--slate-600); flex: 0 0 100px; }

.review-box {
  background: var(--slate-50);
  padding: 1.5rem;
  border-radius: 1rem;
}

.review-box h3 { margin-top: 0; margin-bottom: 1.5rem; font-size: 1.25rem; }

.review-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--slate-200);
}

.review-item:last-child { border: none; }

.review-item label { margin: 0; font-size: 0.875rem; opacity: 0.7; font-weight: normal; }
.review-item span { font-weight: 700; text-align: left; }

.mob-search-wrap {
  display: flex;
  flex-direction: column;
}

#mobSearchResult .alert {
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

#mobSearchResult .alert div {
  margin-bottom: 0.5rem;
}

#mobSearchResult .alert strong {
  color: var(--blue-700);
}

#mobSearchResult .alert p {
  margin-bottom: 1rem;
}

#mobSearchResult .alert:last-child {
  padding-bottom: 0;
}

.w-full { width: 100%; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mini-badge { font-size: 0.7rem; padding: 0.1rem 0.4rem; border-radius: 0.5rem; background: var(--blue-100); color: var(--blue-700); }

.stepper-btn {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 0.75rem;
  background: var(--slate-100);
  color: var(--slate-700);
  border: 1px solid var(--slate-200);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.stepper-btn[hidden] {
  display: none !important;
}

.stepper-btn:hover {
  background: var(--slate-200);
}

.passenger-stepper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
}

.btn.primary {
  background: var(--indigo-600);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.btn.primary:hover:not(:disabled) {
  background: var(--indigo-700);
  transform: translateY(-1px);
  color: var(--white);
}

.btn.emerald {
  background: var(--emerald-600);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.btn.emerald:hover:not(:disabled) {
  background: var(--emerald-700);
  transform: translateY(-1px);
  color: var(--white);
}

.btn.indigo {
  background: var(--indigo-600);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 105, 148, 0.2);
}

.btn.indigo:hover:not(:disabled) {
  background: var(--indigo-700);
  transform: translateY(-1px);
  color: var(--white);
}

.btn.primary:active:not(:disabled) {
  transform: translateY(0);
}

.btn.primary:disabled {
  background: var(--slate-300);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.7;
}

.tag-btn {
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  color: var(--slate-700);
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.tag-btn:hover {
  background: var(--slate-200);
  border-color: var(--slate-300);
}

.vessel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.vessel-tags[hidden] {
  display: none !important;
}

.btn.secondary {
  background: var(--slate-100);
  color: var(--slate-600);
}

.btn.secondary:hover {
  background: var(--slate-200);
}

.btn.mini {
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
  border-radius: 0.5rem;
}

.wizard-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.records-panel h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: var(--slate-800);
}

.records-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

/* Data Tables inside Sleek Panel */
.record-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--slate-200);
  border-radius: 0.75rem;
  background: var(--white);
  width: 100%;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

table.record-table,
table.admin-table {
  width: max-content;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

th {
  background: var(--slate-50);
  color: var(--slate-600);
  font-weight: 500;
  text-align: center;
  padding: 0.5rem;
  border-bottom: 1px solid var(--slate-200);
  white-space: nowrap;
}

td {
  padding: 0.5rem;
  border-bottom: 1px solid var(--slate-100);
  vertical-align: middle;
  text-align: center;
}

table.record-table td,
table.admin-table td {
  white-space: nowrap;
}

tr.needs-inquiry td {
  background: #fffbeb;
}

tr.is-verified td {
  background: var(--emerald-50);
}

.status-text {
  font-size: 0.75rem;
  display: block;
  margin-top: 0.25rem;
}

tr[data-verified="true"] .status-text {
  color: var(--emerald-600);
  font-weight: 600;
}

tr[data-verified="error"] .status-text {
  color: var(--red-500);
  font-weight: 600;
}

.icon-btn {
  background: var(--red-50);
  color: var(--red-500);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: 0.2s;
}

.icon-btn:hover {
  background: #fecaca;
}

.record-actions {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  justify-content: flex-end;
}

.empty-state {
  padding: 2rem;
  text-align: center;
  background: var(--slate-50);
  border: 1px dashed var(--slate-200);
  border-radius: 0.75rem;
  color: var(--slate-500);
  font-size: 0.875rem;
}

.submit-wrap {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}

/* Modals */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.modal-backdrop[hidden] {
  display: none;
}

.confirm-dialog {
  background: var(--white);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 480px;
}

.confirm-dialog h2 {
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
}

.confirm-dialog p {
  color: var(--slate-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* Alerts */
.alert {
  padding: 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.alert.error {
  background: var(--red-50);
  color: var(--red-500);
  border: 1px solid #fecaca;
}

.alert.success {
  background: var(--emerald-50);
  color: var(--emerald-700);
  border: 1px solid #a7f3d0;
}

/* Admin specific */
.admin-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  padding: 2rem;
}

.admin-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: stretch;
}

.admin-dashboard-grid > .admin-card {
  margin-bottom: 0 !important;
  display: flex;
  flex-direction: column;
}

.login-form {
  display: grid;
  gap: 1rem;
  max-width: 400px;
}

.admin-inquiry {
  display: grid;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--slate-200);
  margin-bottom: 2rem;
}

.admin-inquiry-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.live-time {
  font-size: 0.75rem;
  color: var(--slate-500);
}

/* Responsive Admin Panel */
@media (max-width: 1150px) {
  .admin-card {
    padding: 1rem !important;
  }
  .badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .sleek-content {
    padding: 1rem !important;
  }
  .record-table-wrap {
    background: transparent !important;
    border: none !important;
  }
  table.admin-table, table.record-table, table.sleek-table {
    display: block;
    width: 100%;
  }
  table.admin-table thead, table.admin-table tbody, table.admin-table th, table.admin-table td, table.admin-table tr,
  table.record-table thead, table.record-table tbody, table.record-table th, table.record-table td, table.record-table tr,
  table.sleek-table thead, table.sleek-table tbody, table.sleek-table th, table.sleek-table td, table.sleek-table tr {
    display: block;
  }
  table.admin-table thead, table.record-table thead, table.sleek-table thead {
    display: none; /* Hide top headers on mobile */
  }
  table.admin-table tr, table.record-table tr, table.sleek-table tr {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  }
  table.admin-table td, table.record-table td, table.sleek-table td {
    padding: 0.5rem 0.25rem !important;
    text-align: right !important;
    border: none !important;
    border-bottom: 1px dashed var(--slate-100) !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem !important;
    white-space: normal !important;
    min-width: 0 !important;
  }
  table.admin-table td:last-child, table.record-table td:last-child, table.sleek-table td:last-child {
    border-bottom: none !important;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  table.admin-table td::before, table.record-table td::before, table.sleek-table td::before {
    content: attr(data-label);
    font-weight: bold;
    color: var(--slate-500);
    flex-shrink: 0;
  }
  table.admin-table td input, table.admin-table td select,
  table.record-table td input, table.record-table td select,
  table.sleek-table td input, table.sleek-table td select {
    flex: 1;
    min-width: 0 !important;
    max-width: 100% !important;
    font-size: 0.85rem !important;
  }
  .admin-inquiry-row {
    flex-direction: column;
    align-items: stretch !important;
  }
  .admin-inquiry-row button, .admin-inquiry-row input {
    width: 100% !important;
    max-width: none !important;
  }
}

/* Hamburger Menu for Mobile Header */
.hamburger-menu {
  display: none;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: 0.5rem;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--slate-700);
  transition: all 0.2s;
}

.hamburger-menu:hover {
  background: var(--slate-200);
}

@media (max-width: 900px) {
  .hamburger-menu.active-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .sleek-header {
    position: relative;
    flex-wrap: nowrap !important;
  }
  
  .sleek-header h2 {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}


@keyframes dropDownMenu {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Added focus-mode CSS overrides */
div#desktopShell:nth-of-type(1) > main:nth-of-type(1) > div:nth-of-type(1) > form#manualRegistrationForm:nth-of-type(1) > div:nth-of-type(1) > table:nth-of-type(1) > tbody#manualRowsBody:nth-of-type(1) > tr:nth-of-type(1) > td:nth-of-type(2) > input:nth-of-type(1) {
  width: 65px;
}
div#desktopShell:nth-of-type(1) > main:nth-of-type(1) > div:nth-of-type(1) > form#manualRegistrationForm:nth-of-type(1) > div:nth-of-type(1) > table:nth-of-type(1) > tbody#manualRowsBody:nth-of-type(1) > tr:nth-of-type(1) > td:nth-of-type(2) {
  width: 57px;
}
div#desktopShell:nth-of-type(1) > main:nth-of-type(1) > div:nth-of-type(1) > form#manualRegistrationForm:nth-of-type(1) > div:nth-of-type(1) > table:nth-of-type(1) > tbody#manualRowsBody:nth-of-type(1) > tr:nth-of-type(1) > td:nth-of-type(1) > input:nth-of-type(1) {
  width: 56px;
}
div#desktopShell:nth-of-type(1) > main:nth-of-type(1) > div:nth-of-type(1) > form#manualRegistrationForm:nth-of-type(1) > div:nth-of-type(1) > table:nth-of-type(1) > thead:nth-of-type(1) > tr:nth-of-type(1) > th:nth-of-type(11) {
  width: 130.438px;
}

/* Ocean Animation Elements */
.ocean-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #023e8a;
  overflow: hidden;
  pointer-events: none;
}

.ocean-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ocean-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(2, 62, 138, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}

@media print {
  body * {
    visibility: hidden;
  }
  .print-area, .print-area * {
    visibility: visible;
  }
  .print-area {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    margin: 0 !important;
    padding: 20px !important;
    box-shadow: none !important;
    border: none !important;
  }
  .no-print {
    display: none !important;
  }
}



