/* Chrome, Edge, Safari */
.search-chat::-webkit-search-cancel-button {
  cursor: pointer;
}

/* Firefox fallback (if custom clear icon is used) */
.search-chat {
  cursor: text;
}




/* Row separator */
.table tbody td {
  border-bottom: 1px solid #edf0f2;
}

/* Zebra rows */
.table tbody tr:nth-of-type(odd)>* {
  background-color: #f7f9fc;
}

.table tbody tr:nth-of-type(even)>* {
  background-color: #ffffff;
}

/* Hover effect */
.table tbody tr:hover>* {
  background-color: #eef4ff !important;
  transition: background 0.2s ease;
}



.location-cell {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 260px;
}

/* location row */
.location-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* prevent icon resize */
.location-item svg {
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
  flex-shrink: 0;
}

/* address text */
.location-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.location-item.pickup svg {
  color: #22c55e;
}

.location-item.drop svg {
  color: #ef4444;
}

.location-divider {
  width: 2px;
  height: 8px;
  background: #e5e7eb;
  margin-left: 6px;
}


.courier-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 220px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
}

.courier-main {
  font-weight: 600;
  font-size: 13px;

}

.courier-sub {
  font-size: 12px;
  color: #6b7280;
}


.icon-box {
  width: 40px;
  height: 40px;
  background: #f1f5f9;
  /* light soft background */
  border-radius: 8px;
  /* square with soft corners */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #123b6e;
  /* your brand color */
}


/* Filter Inputs */
.dashboard-filter {
  background: #ffffff !important;
  height: 45px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}

/* Apply Button */
.dashboard-apply-btn {
  height: 45px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dashboard-apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.dashboard-select-wrapper {
  position: relative;
  min-width: 180px;
}

.dashboard-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #ffffff !important;
  height: 45px;
  border-radius: 8px;
  padding-right: 40px;
  font-size: 14px;
}

.dashboard-select-icon {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  pointer-events: none;
  color: #6c757d;
  font-size: 18px;
}


.form-select {
  padding-top: 12px;
  padding-bottom: 12px;
}


.spinner-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
}

.spinner-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  /* adjust as needed */
  height: auto;
  transform: translate(-50%, -50%);
}

.spinner-text {
  margin-top: 16px;
  font-size: 16px;
  color: #000;
}

.modal-body-scroll {
  max-height: calc(100vh - 160px);
  overflow-y: auto;
  overflow-x: hidden;
}


/* =================================================
   Custom React Select (AsyncPaginate)
   Brand Color: #123B6E
   ================================================= */

/* ---------- Control ---------- */
.custom-select .react-select__control {
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid #dfe5ef;
  background-color: #ffffff;
  box-shadow: none;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Hover */
.custom-select .react-select__control:hover {
  border-color: #c1c9d6;
}

/* Focus */
.custom-select .react-select__control--is-focused {
  border-color: #123B6E;
  box-shadow: 0 0 0 2px rgba(18, 59, 110, 0.12);
}

/* Disabled */
.custom-select .react-select__control--is-disabled {
  background-color: #f5f6f8;
  border-color: #e5e7eb;
  cursor: not-allowed;
  opacity: 0.7;
}

/* ---------- Value Container ---------- */
.custom-select .react-select__value-container {
  padding: 0 12px;
}

/* Single value */
.custom-select .react-select__single-value {
  font-size: 13px;
  font-weight: 500;
  color: #1f2937;
}

/* Placeholder (muted) */
.custom-select .react-select__placeholder {
  font-size: 13px;
  color: #9ca3af;
}

/* ---------- Indicators ---------- */
.custom-select .react-select__indicator {
  color: #6b7280;
  padding: 0 8px;
}

.custom-select .react-select__indicator:hover {
  color: #123B6E;
}

.custom-select .react-select__indicator-separator {
  display: none;
}

/* ---------- Menu ---------- */
.custom-select .react-select__menu {
  z-index: 9999;
  border-radius: 10px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  margin-top: 6px;
}

/* Menu list */
.custom-select .react-select__menu-list {
  padding: 6px;
  max-height: 240px;
}

/* ---------- Option ---------- */
.custom-select .react-select__option {
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

/* Hover */
.custom-select .react-select__option--is-focused {
  background-color: #f3f4f6;
  color: #111827;
}

/* Selected */
.custom-select .react-select__option--is-selected {
  background-color: #123B6E;
  color: #ffffff;
}

/* Image when option is selected */
.custom-select .react-select__option--is-selected img {
  background-color: #ffffff;
  border-color: #ffffff;
}

/* -------- sidebar count--------------------*/
.sidebar-count-badge {
  margin-left: auto;
  max-width: 48px;
  /* 🔒 prevents layout break */
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;

  white-space: nowrap;
  /* keep in one line */
  overflow: hidden;
  /* hide overflow */
  text-overflow: ellipsis;
  /* show ... */
}


/* Primary badge (theme color) */
.badge-primary-light {
  background-color: rgba(18, 59, 110, 0.12);
  /* #123B6E with opacity */
  color: #123B6E;
}

/* Danger badge (alerts like Contact Us) */
.badge-danger-light {
  background-color: rgba(220, 38, 38, 0.12);
  /* soft red */
  color: #dc2626;
}

/* If you want subtle contrast instead of pure white */
.sidebar-item.selected .badge-primary-light {
  background-color: rgba(255, 255, 255, 0.9);
  color: #123B6E;
}

/* Danger badge on selected item */
.sidebar-item.selected .badge-danger-light {
  background-color: rgba(255, 255, 255, 0.9);
  color: #dc2626;
}

/* Image */
.custom-select .custom-option img {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background-color: #e5e7eb;
}

/* Text */
.custom-select .custom-option-label {
  font-size: 13px;
  font-weight: 500;
  color: inherit;
}

/* ---------- Multi Select ---------- */
.custom-select .react-select__multi-value {
  background-color: #eaf4ff;
  border-radius: 16px;
  padding: 2px 6px;
}

.custom-select .react-select__multi-value__label {
  font-size: 12px;
  font-weight: 500;
  color: #123B6E;
}

.custom-select .react-select__multi-value__remove {
  color: #123B6E;
  cursor: pointer;
  border-radius: 50%;
  transition: color 0.15s ease;
}

.custom-select .react-select__multi-value__remove:hover {
  background-color: transparent;
  color: #ff4d4f;
}

/* ---------- Scrollbar ---------- */
.custom-select .react-select__menu-list::-webkit-scrollbar {
  width: 6px;
}

.custom-select .react-select__menu-list::-webkit-scrollbar-thumb {
  background-color: #d1d5db;
  border-radius: 10px;
}

/* ---------- Loading ---------- */
.custom-select .react-select__loading-message {
  font-size: 13px;
  color: #123B6E;
  text-align: center;
  padding: 8px;
}

/* ================= END CUSTOM SELECT ================= */




.error-message {
  color: #dc3545;
  /* Bootstrap's danger color */
  padding-top: 0.25rem;
  /* Adjusts space between input and error message */
  font-size: 0.875rem;
  /* Slightly smaller than the default font size */
  line-height: 1.2;
  /* Adjust line height for better readability */
}

.header-shadow {
  /* box-shadow: 0 4px 4px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); */
  /* box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em; */
  box-shadow: rgba(17, 17, 26, 0.068) 0px 1px 2px;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);  */
  z-index: 1001;
  /* Ensure it's above other elements */
}

.active-color {
  color: #9c9c9c !important;
}

.react-datepicker-wrapper {
  width: 100%;
}

.revenue-card {
  border-radius: 8px;
  box-shadow: none;
  overflow: hidden;
  color: white;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Smooth zoom and shadow transition */
}

.revenue-card:hover {
  transform: scale(1.01);
  /* Zoom in the card */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* Add shadow effect */
}

.revenue-card .card-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.revenue-card h6 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  color: white;
}

.revenue-card h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 8px 0;
  color: white;
}

.revenue-card .icon-box {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px;
}

.revenue-card .icon-box i {
  font-size: 28px;
  color: white;
  /* Set the icon color */
  transition: transform 0.3s ease;
  /* Smooth icon animation */
}

.revenue-card:hover .icon-box i {
  color: white;
  /* Ensure the color remains unchanged on hover */
  transform: none;
  /* Prevent scaling */
}

/*-----MODE------*/

.modal-content {
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 3px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: slide-down 0.3s ease-out;
}

.modal-header {
  border-bottom: 1px solid #dee2e6;
}

.modal-title {
  font-size: 18px;
  font-weight: 600;
  color: #706f6f;
}

.modal-dialog {
  z-index: 1050;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
}

@keyframes slide-down {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.back {
  background-color: #f2f2f2;
  outline: none;
}

.back:hover {
  background-color: #f2f2f2;
  box-shadow: rgba(17, 17, 26, 0.068) 0px 2px 2px;
}

.back :focus {
  outline: none;
  border: none;
}

.qr-section {
  display: flex;
  justify-content: center;
}

.qr-container {
  background: white;
  padding: 10px;
  border-radius: 16px;
  display: inline-block;
}

.qr-code {
  width: 280px;
  height: 280px;
}

.instructions-section {
  padding: 20px 40px;
}

.instruction-item {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 16px;
}

.instruction-number {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
}

.instruction-text {
  color: #000;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.input-section {
  padding: 24px 40px;
}

.code-input {
  font-size: 16px;
  border-radius: 12px;
  padding: 10px;
}

.buttons-section {
  padding: 0 40px 20px;
}

.save-2fa-code-box {
  background: rgb(255, 255, 255);
  border: 2px solid rgba(97, 83, 83, 0.2);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.save-2fa-code-text {
  font-size: 24px;
  font-weight: 700;
  color: rgb(0, 0, 0);
  letter-spacing: 2px;
  flex: 1;
}

.save-2fa-copy-btn {
  background: white;
  border: none;
  border-radius: 6px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.save-2fa-copy-btn:hover {
  background: #f0f0f0;
  transform: scale(1.05);
}

.save-2fa-copy-btn:active {
  transform: scale(0.95);
}

.save-2fa-divider {
  height: 1px;
  background: rgba(63, 59, 59, 0.2);
  margin: 24px 0;
}

.save-2fa-info {
  margin-top: 10px;
  line-height: 1.6;
}

.save-2fa-info-text {
  font-size: 15px;
  color: rgba(122, 113, 113, 0.685);
  margin-bottom: 0;
  font-weight: 400;
}

@media (max-width: 768px) {
  .modal-title-2fa {
    font-size: 28px;
  }

  .modal-header-2fa,
  .qr-section,
  .instructions-section,
  .input-section,
  .buttons-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .qr-code {
    width: 220px;
    height: 220px;
  }
}

.logout-modal-body {
  padding: 40px 32px;
  text-align: center;
  background: white;
}

.logout-icon-container {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.logout-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #e6f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #b3dfff;
}

.logout-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
  margin-top: 0;
}

.logout-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.5;
  padding: 0 10px;
}

.logout-buttons-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.logout-btn {
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.logout-btn-primary {
  background-color: #123B6E;
  color: white;
  /* box-shadow: 0 4px 12px rgba(0, 142, 250, 0.3); */
}

.logout-btn-primary:hover {
  background-color: #20477a;
  transform: translateY(-2px);
  /* box-shadow: 0 6px 16px rgba(0, 142, 250, 0.4); */
}

.logout-btn-primary:active {
  transform: translateY(0);
  /* box-shadow: 0 2px 8px rgba(0, 142, 250, 0.3); */
}

.logout-btn-secondary {
  background-color: white;
  color: #123B6E;
  border: 2px solid #e0e0e0;
}

.logout-btn-secondary:hover {
  background-color: #f8f9fa;
  border-color: #123B6E;
  transform: translateY(-2px);
  /* box-shadow: 0 4px 12px rgba(0, 142, 250, 0.1); */
}

.logout-btn-secondary:active {
  transform: translateY(0);
  box-shadow: none;
}

@media (max-width: 576px) {
  .logout-modal-body {
    padding: 30px 20px;
  }

  .logout-title {
    font-size: 20px;
  }

  .logout-icon-circle {
    width: 70px;
    height: 70px;
  }

  .logout-icon-circle svg {
    width: 35px;
    height: 35px;
  }

  .logout-btn {
    padding: 12px 20px;
    font-size: 15px;
  }
}

.custom-swal-popup {
  border-radius: 16px !important;
  box-shadow: 0 20px 60px rgba(0, 142, 250, 0.15) !important;
  padding: 40px 32px !important;
  background: white !important;
}

.custom-swal-title {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  line-height: 1.3 !important;
  padding: 0 !important;
}

.custom-swal-text {
  font-size: 16px !important;
  color: #666 !important;
  line-height: 1.5 !important;
}

.custom-swal-icon {
  border-color: #123B6E !important;
  color: #123B6E !important;
  margin: 0 auto 24px !important;
}

.custom-swal-icon.swal2-warning {
  border-color: #123B6E !important;
  color: #123B6E !important;
}

.swal2-icon.swal2-warning .swal2-icon-content {
  color: #123B6E !important;
}

.swal2-actions {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  width: 100% !important;
  margin-top: 24px !important;
}

.custom-swal-confirm-btn {
  width: 100% !important;
  padding: 14px 24px !important;
  background-color: #123B6E !important;
  color: white !important;
  border: none !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(0, 142, 250, 0.3) !important;
  margin: 0 !important;
}

.custom-swal-confirm-btn:hover {
  background-color: #0077d4 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(0, 142, 250, 0.4) !important;
}

.custom-swal-confirm-btn:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(0, 142, 250, 0.3) !important;
}

.custom-swal-cancel-btn {
  width: 100% !important;
  padding: 14px 24px !important;
  background-color: white !important;
  color: #123B6E !important;
  border: 2px solid #e0e0e0 !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  margin: 0 !important;
}

.custom-swal-cancel-btn:hover {
  background-color: #f8f9fa !important;
  border-color: #123B6E !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0, 142, 250, 0.1) !important;
}

.custom-swal-cancel-btn:active {
  transform: translateY(0) !important;
  box-shadow: none !important;
}

@media (max-width: 576px) {
  .custom-swal-popup {
    padding: 30px 20px !important;
  }

  .custom-swal-title {
    font-size: 20px !important;
  }

  .custom-swal-text {
    font-size: 15px !important;
  }

  .custom-swal-confirm-btn,
  .custom-swal-cancel-btn {
    padding: 12px 20px !important;
    font-size: 15px !important;
  }
}

/* Container */
.vsa-container {
  padding: 20px;
  background: #f8f9fc;
  min-height: calc(100vh - 200px);
}

/* Main Card */
.vsa-main-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid #e3e6f0;
}

/* Card Header */
.vsa-card-header {
  background: linear-gradient(135deg, #123B6E 0%, #0066c0 100%);
  padding: 24px 30px;
  border-bottom: none;
}

.vsa-header-title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.3px;
}

/* Card Body */
.vsa-card-body {
  padding: 30px;
}

/* Profile Section */
.vsa-profile-section {
  text-align: center;
  margin-bottom: 40px;
  padding: 20px;
}

.vsa-profile-image-wrapper {
  display: inline-block;
  position: relative;
  padding: 8px;
  background: linear-gradient(135deg, #123B6E 0%, #0066c0 100%);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 142, 250, 0.3);
}

.vsa-profile-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  display: block;
}

/* Info Grid */
.vsa-info-grid {
  margin-bottom: 40px;
}

.vsa-info-card {
  background: #f8f9fc;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #123B6E;
  transition: all 0.3s ease;
  height: 100%;
}

.vsa-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 142, 250, 0.15);
}

.vsa-info-label {
  font-size: 13px;
  font-weight: 600;
  color: #5a5c69;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: block;
}

.vsa-info-value {
  font-size: 16px;
  color: #2c3e50;
  font-weight: 500;
  margin: 0;
  word-break: break-word;
}

/* Status Badge */
.vsa-status-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: capitalize;
}

.vsa-status-active {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.vsa-status-inactive {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Permissions Section */
.vsa-permissions-section {
  margin-top: 20px;
}

.vsa-section-header {
  background: linear-gradient(135deg, #123B6E 0%, #0066c0 100%);
  padding: 16px 24px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.vsa-section-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.3px;
}

/* Permission Card */
.vsa-permission-card {
  background: #ffffff;
  border: 2px solid #e3e6f0;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.vsa-permission-header {
  background: linear-gradient(135deg, #123B6E 0%, #0066c0 100%);
  padding: 14px 18px;
}

.vsa-permission-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  text-transform: capitalize;
}

.vsa-permission-body {
  padding: 16px 18px;
  min-height: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
}

.vsa-permission-badge {
  display: inline-block;
  background: #e6f4ff;
  color: #0066c0;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  text-transform: capitalize;
  border: 1px solid #b3e0ff;
  transition: all 0.2s ease;
}

.vsa-nopermission-badge {
  display: inline-block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.2s ease;
}

/* No Data */
.vsa-no-data {
  text-align: center;
  padding: 40px;
  background: #f8f9fc;
  border-radius: 8px;
  border: 2px dashed #d1d3e2;
}

.vsa-no-data p {
  color: #858796;
  font-size: 15px;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .vsa-container {
    padding: 15px;
  }

  .vsa-card-body {
    padding: 20px 15px;
  }

  .vsa-card-header {
    padding: 18px 20px;
  }

  .vsa-header-title {
    font-size: 20px;
  }

  .vsa-profile-image {
    width: 140px;
    height: 140px;
  }

  .vsa-info-card {
    padding: 16px;
  }

  .vsa-info-label {
    font-size: 12px;
  }

  .vsa-info-value {
    font-size: 14px;
  }

  .vsa-section-header {
    padding: 14px 18px;
  }

  .vsa-section-title {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .vsa-profile-image {
    width: 120px;
    height: 120px;
  }

  .vsa-permission-card {
    margin-bottom: 15px;
  }
}

.error404__container {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background-color: #f8f9fa;
}

.error404__box {
  text-align: center;
  max-width: 600px;
  background: white;
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.error404__icon {
  width: 150px;
  height: 150px;
  margin: 0 auto 30px;
}

.error404__icon svg {
  width: 100%;
  height: 100%;
}

.error404__code {
  font-size: 120px;
  font-weight: bold;
  color: #123B6E;
  line-height: 1;
  margin-bottom: 20px;
}

.error404__title {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.error404__description {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.error404__actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.error404__btn-primary {
  background: #123B6E;
  border: none;
  color: white;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

.error404__btn-primary:hover {
  background: #0066b8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 142, 250, 0.3);
}

.error404__btn-outline {
  border: 2px solid #123B6E;
  color: #123B6E;
  background: transparent;
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

.error404__btn-outline:hover {
  background: #123B6E;
  color: white;
}

.error403__container {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background-color: #f8f9fa;
}

.error403__box {
  text-align: center;
  max-width: 600px;
  background: white;
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.error403__icon {
  width: 150px;
  height: 150px;
  margin: 0 auto 30px;
}

.error403__icon svg {
  width: 100%;
  height: 100%;
}

.error403__code {
  font-size: 120px;
  font-weight: bold;
  color: #123B6E;
  line-height: 1;
  margin-bottom: 20px;
}

.error403__title {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.error403__description {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.error403__actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.error403__btn-primary {
  background: #123B6E;
  border: none;
  color: white;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

.error403__btn-primary:hover {
  background: #0066b8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 142, 250, 0.3);
}

.error403__btn-outline {
  border: 2px solid #123B6E;
  color: #123B6E;
  background: transparent;
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

.error403__btn-outline:hover {
  background: #123B6E;
  color: white;
}

@media (max-width: 768px) {

  .error404__box,
  .error403__box {
    padding: 40px 20px;
  }

  .error404__code,
  .error403__code {
    font-size: 80px;
  }

  .error404__title,
  .error403__title {
    font-size: 24px;
  }

  .error404__icon,
  .error403__icon {
    width: 120px;
    height: 120px;
  }
}