
    * {
      box-sizing: border-box;
    }

    :root {
      --primary: #b40902;
      --primary-dark: #760400;
      --yellow: #ffe84d;
      --ink: #101828;
      --muted: #667085;
      --line: rgba(16, 24, 40, 0.1);
      --soft-red: rgba(180, 9, 2, 0.07);
      --white: #ffffff;
      --font-body: "Nunito", sans-serif;
    }

    body {
      margin: 0;
      font-family: var(--font-body);
      color: var(--ink);
      background:
        radial-gradient(circle at 12% 10%, rgba(255, 232, 77, 0.24), transparent 22%),
        radial-gradient(circle at 92% 12%, rgba(180, 9, 2, 0.14), transparent 28%),
        linear-gradient(135deg, #fffafa 0%, #ffffff 48%, #fff3f1 100%);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font-family: inherit;
    }

    .dashboard {
      min-height: 100vh;
      padding: clamp(22px, 4vh, 38px) 18px;
    }

    .dashboard-shell {
      width: min(1180px, 100%);
      margin: 0 auto;
    }

    .dashboard-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 18px;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.82);
      box-shadow: 0 18px 44px rgba(16, 24, 40, 0.08);
      backdrop-filter: blur(14px);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .brand img {
      width: 156px;
      max-width: 46vw;
      height: auto;
      display: block;
    }

    .top-actions {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .icon-button,
    .primary-button,
    .ghost-button {
      min-height: 42px;
      border: 0;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
    }

    .icon-button {
      width: 42px;
      background: #fff;
      color: var(--ink);
      border: 1px solid var(--line);
    }

    .primary-button {
      padding: 10px 16px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #fff;
      box-shadow: 0 12px 22px rgba(180, 9, 2, 0.2);
    }

    .ghost-button {
      padding: 10px 16px;
      background: #fff;
      color: var(--ink);
      border: 1px solid var(--line);
    }

    .hero-card {
      position: relative;
      overflow: hidden;
      display: grid;
      margin-bottom: 18px;
      padding: 24px;
      border-radius: 30px;
      background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.34)),
        url("https://roopkund.yourdigishell.in/IMAGES/KEDARKANTHA%20TREK/23773220241116083840.png.jpeg") center/cover;
      color: #fff;
      min-height: 260px;
      box-shadow: 0 22px 56px rgba(16, 24, 40, 0.14);
    }

    .hero-copy {
      align-self: end;
      max-width: 650px;
    }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
      padding: 7px 11px;
      border-radius: 999px;
      background: rgba(255, 232, 77, 0.94);
      color: #1a1200;
      font-size: 11px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .hero-copy h1 {
      margin: 0 0 10px;
      font-size: clamp(2.1rem, 5vw, 4rem);
      line-height: 0.96;
      letter-spacing: -0.06em;
    }

    .hero-copy p {
      max-width: 560px;
      margin: 0;
      color: rgba(255, 255, 255, 0.84);
      font-size: 15px;
      line-height: 1.6;
      font-weight: 600;
    }

    .dashboard-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
      gap: 18px;
      align-items: start;
    }

    .dashboard-empty .dashboard-grid {
      grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
    }

    .main-stack {
      display: grid;
      gap: 18px;
      min-width: 0;
    }

    .dashboard-stats {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      margin-bottom: 18px;
    }

    .dashboard-stats article {
      min-height: 96px;
      display: grid;
      align-content: center;
      gap: 8px;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.88);
      box-shadow: 0 14px 34px rgba(16, 24, 40, 0.07);
    }

    .dashboard-stats span {
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
    }

    .dashboard-stats strong {
      color: var(--ink);
      font-size: clamp(1.25rem, 2.5vw, 1.8rem);
      line-height: 1;
      font-weight: 900;
    }

    .panel {
      border: 1px solid var(--line);
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.88);
      box-shadow: 0 16px 42px rgba(16, 24, 40, 0.08);
      overflow: hidden;
    }

    .panel-body {
      display: grid;
      gap: 12px;
      padding: 18px;
    }

    .panel-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
      padding: 18px 18px 0;
    }

    .panel-head h2 {
      margin: 0;
      font-size: 22px;
      line-height: 1.05;
      letter-spacing: -0.04em;
    }

    .panel-head p {
      margin: 5px 0 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
      font-weight: 600;
    }

    .booking-tabs {
      display: inline-flex;
      gap: 8px;
      padding: 5px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #fff;
    }

    .booking-tab-button {
      min-height: 36px;
      border: 0;
      border-radius: 999px;
      padding: 8px 13px;
      background: transparent;
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
    }

    .booking-tab-button.is-active {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #fff;
      box-shadow: 0 10px 18px rgba(180, 9, 2, 0.16);
    }

    .booking-panel {
      display: none;
    }

    .booking-panel.is-active {
      display: block;
    }

    .booking-card {
      margin: 18px;
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 16px;
      padding: 12px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: linear-gradient(180deg, #fff, #fffafa);
    }

    .empty-booking-card {
      min-height: 260px;
      place-items: center;
      text-align: center;
      padding: clamp(22px, 4vw, 42px);
      background:
        radial-gradient(circle at 50% 0%, rgba(255, 232, 77, 0.24), transparent 34%),
        linear-gradient(180deg, #fff, #fffafa);
    }

    .empty-booking-card .booking-content {
      max-width: 560px;
      justify-items: center;
      padding: 0;
    }

    .empty-booking-card h3 {
      margin: 0;
      font-size: clamp(1.8rem, 4vw, 2.65rem);
    }

    .empty-booking-card p {
      margin: 0;
      max-width: 520px;
    }

    .empty-booking-card .booking-actions {
      justify-content: center;
    }

    .empty-icon {
      width: 58px;
      height: 58px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 20px;
      background: var(--yellow);
      color: #1a1200;
      font-size: 22px;
      box-shadow: 0 14px 30px rgba(255, 204, 0, 0.24);
    }

    .booking-content {
      display: grid;
      align-content: space-between;
      gap: 14px;
      padding: 4px 4px 4px 0;
    }

    .status-row,
    .meta-row {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 10px;
      border-radius: 999px;
      background: var(--soft-red);
      color: var(--primary);
      font-size: 11px;
      font-weight: 700;
    }

    .chip.yellow {
      background: var(--yellow);
      color: #1a1200;
    }

    .booking-content h3 {
      margin: 10px;
      font-size: 26px;
      line-height: 1.06;
      letter-spacing: -0.04em;
    }

    .booking-content p {
      margin: 7px 0 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.5;
      font-weight: 600;
    }

    .empty-booking-card .booking-content h3 {
      margin: 0;
      font-size: clamp(1.8rem, 4vw, 2.65rem);
    }

    .empty-booking-card .booking-content p {
      margin: 0;
      max-width: 520px;
      font-size: 14px;
      line-height: 1.65;
    }

    .meta-item {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--ink);
      font-size: 12px;
      font-weight: 700;
    }

    .booking-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }

    .booking-addons {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .booking-addon {
      display: grid;
      gap: 8px;
      padding: 12px;
      border: 1px solid rgba(16, 24, 40, 0.1);
      border-radius: 18px;
      background: #fff;
    }

    .booking-addon-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .booking-addon-title {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--ink);
      font-size: 13px;
      font-weight: 800;
    }

    .booking-addon-title i {
      width: 30px;
      height: 30px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--soft-red);
      color: var(--primary);
    }

    .booking-addon-amount {
      color: var(--primary);
      font-size: 13px;
      font-weight: 800;
      white-space: nowrap;
    }

    .booking-addon p {
      margin: 0;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.45;
      font-weight: 600;
    }

    .mini-list {
      display: grid;
      gap: 7px;
      margin-top: 2px;
    }

    .mini-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      color: var(--ink);
      font-size: 12px;
      font-weight: 700;
    }

    .summary-panel {
      padding: 18px;
    }

    .payment-summary {
      display: grid;
      gap: 10px;
    }

    .payment-row,
    .payment-total {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 11px 0;
      border-bottom: 1px solid var(--line);
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .payment-row strong,
    .payment-total strong {
      color: var(--ink);
      font-size: 14px;
      white-space: nowrap;
    }

    .payment-total {
      margin-top: 2px;
      padding: 14px;
      border: 0;
      border-radius: 18px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #fff;
    }

    .payment-total strong {
      color: #fff;
      font-size: 20px;
    }

    .side-stack {
      display: grid;
      gap: 18px;
    }

    .dashboard-empty .side-stack,
    .dashboard-empty aside.panel {
      position: sticky;
      top: 18px;
    }

    .quick-list {
      display: grid;
      gap: 10px;
      padding: 18px;
    }

    .quick-list.is-hidden {
      display: none;
    }

    .quick-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      width: 100%;
      padding: 13px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: #fff;
      color: var(--ink);
      font-size: 13px;
      font-weight: 700;
      font-family: inherit;
      text-align: left;
      cursor: pointer;
    }

    .quick-link.is-active {
      border-color: rgba(180, 9, 2, 0.18);
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #fff;
      box-shadow: 0 12px 22px rgba(180, 9, 2, 0.18);
    }

    .quick-link span {
      display: inline-flex;
      align-items: center;
      gap: 9px;
    }

    .quick-link i:first-child {
      width: 34px;
      height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--soft-red);
      color: var(--primary);
    }

    .quick-link.is-active i:first-child {
      background: var(--yellow);
      color: #1a1200;
    }

    .action-panel {
      display: none;
      margin: 18px;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: 20px;
      background: linear-gradient(180deg, #fff, #fffafa);
    }

    .action-panel.is-active {
      display: block;
    }

    .action-panel h3 {
      margin: 0 0 10px;
      font-size: 18px;
      line-height: 1.1;
      letter-spacing: -0.03em;
    }

    .action-panel-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 12px;
    }

    .action-panel-head h3 {
      margin: 0;
    }

    .action-back {
      min-height: 34px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #fff;
      color: var(--ink);
      padding: 7px 11px;
      font: inherit;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
    }

    .dashboard-form {
      display: grid;
      gap: 10px;
    }

    .dashboard-field {
      display: grid;
      gap: 6px;
    }

    .dashboard-field label {
      font-size: 12px;
      font-weight: 700;
      color: var(--ink);
    }

    .dashboard-field input,
    .dashboard-field textarea {
      width: 100%;
      min-height: 42px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fff;
      padding: 10px 12px;
      color: var(--ink);
      font: inherit;
      font-size: 13px;
      font-weight: 600;
      outline: 0;
    }

    .dashboard-field textarea {
      min-height: 82px;
      resize: vertical;
    }

    .file-box {
      display: grid;
      gap: 8px;
      padding: 14px;
      border: 1px dashed rgba(180, 9, 2, 0.28);
      border-radius: 16px;
      background: var(--soft-red);
      color: var(--muted);
      font-size: 12px;
      line-height: 1.45;
      font-weight: 600;
    }

    .file-box label {
      display: grid;
      gap: 8px;
      cursor: pointer;
    }

    .file-box strong {
      color: var(--ink);
      font-size: 14px;
    }

    .file-box input {
      width: 100%;
      color: var(--ink);
      font: inherit;
      font-size: 12px;
    }

    .file-box-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      min-width: 0;
      padding-top: 8px;
      border-top: 1px solid rgba(180, 9, 2, 0.14);
    }

    .file-box-footer span {
      min-width: 0;
      overflow: hidden;
      color: var(--ink);
      font-size: 12px;
      font-weight: 800;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .file-remove-button {
      min-height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      flex: 0 0 auto;
      border: 1px solid rgba(180, 9, 2, 0.2);
      border-radius: 999px;
      background: #fff;
      color: var(--primary);
      padding: 7px 11px;
      font: inherit;
      font-size: 12px;
      font-weight: 900;
      cursor: pointer;
    }

    .file-remove-button:disabled {
      cursor: not-allowed;
      opacity: 0.45;
    }

    .info-tabs-section {
      margin-top: 18px;
      border: 1px solid var(--line);
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.88);
      box-shadow: 0 16px 42px rgba(16, 24, 40, 0.08);
      overflow: hidden;
    }

    .info-tabs-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
      padding: 18px 18px 0;
    }

    .info-tabs-head h2 {
      margin: 0;
      font-size: 22px;
      line-height: 1.05;
      letter-spacing: -0.04em;
    }

    .info-tabs-head p {
      margin: 5px 0 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
      font-weight: 600;
    }

    .info-tab-buttons {
      display: inline-flex;
      gap: 8px;
      padding: 5px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #fff;
    }

    .info-tab-button {
      min-height: 38px;
      border: 0;
      border-radius: 999px;
      padding: 8px 13px;
      background: transparent;
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
    }

    .info-tab-button.is-active {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #fff;
      box-shadow: 0 10px 18px rgba(180, 9, 2, 0.16);
    }

    .info-tab-content {
      padding: 18px;
    }

    .info-panel {
      display: none;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .info-panel.is-active {
      display: grid;
    }

    .info-card {
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: 20px;
      background: linear-gradient(180deg, #fff, #fffafa);
    }

    .info-card i {
      width: 36px;
      height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      border-radius: 50%;
      background: var(--yellow);
      color: #1a1200;
    }

    .info-card strong {
      display: block;
      font-size: 16px;
      line-height: 1.2;
    }

    .info-card p {
      margin: 7px 0 0;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.5;
      font-weight: 600;
    }

    @media (max-width: 940px) {
      .hero-card,
      .dashboard-grid,
      .dashboard-stats {
        grid-template-columns: 1fr;
      }

      .dashboard-empty aside.panel {
        position: static;
      }

      .booking-card {
        grid-template-columns: 1fr;
      }

      .booking-content {
        padding: 0;
      }

      .booking-addons {
        grid-template-columns: 1fr;
      }

      .info-panel {
        grid-template-columns: 1fr;
      }

    }

    @media (max-width: 620px) {
      .dashboard {
        padding: 8px;
      }

      .dashboard-shell {
        width: 100%;
      }

      .dashboard-topbar {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 10px;
        padding: 11px 12px 12px;
        border-radius: 18px;
      }

      .brand {
        min-height: 28px;
        font-size: 14px;
      }

      .top-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
        justify-content: stretch;
      }

      .top-actions .ghost-button,
      .top-actions .primary-button {
        width: 100%;
        min-height: 38px;
        padding: 8px 9px;
        font-size: 11.5px;
        white-space: nowrap;
      }

      .hero-card {
        min-height: 190px;
        margin-bottom: 10px;
        padding: 16px;
        border-radius: 22px;
        background-position: center top;
      }

      .hero-copy h1 {
        margin-bottom: 8px;
        font-size: clamp(1.7rem, 10vw, 2.35rem);
        line-height: 1.02;
        letter-spacing: 0;
      }

      .hero-copy p {
        font-size: 12px;
        line-height: 1.45;
      }

      .kicker {
        margin-bottom: 9px;
        padding: 6px 9px;
        font-size: 9.5px;
        letter-spacing: 0.07em;
      }

      .dashboard-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 12px;
      }

      .dashboard-stats article {
        min-height: 74px;
        padding: 12px;
        border-radius: 16px;
        gap: 6px;
      }

      .dashboard-stats span {
        font-size: 10.5px;
        line-height: 1.25;
      }

      .dashboard-stats strong {
        font-size: 1.22rem;
      }

      .dashboard-grid,
      .side-stack {
        gap: 12px;
      }

      .panel {
        border-radius: 22px;
      }

      .panel-head,
      .info-tabs-head {
        padding: 16px 16px 0;
      }

      .summary-panel,
      .quick-list,
      .info-tab-content {
        padding: 16px;
      }

      .file-box-footer {
        align-items: stretch;
        flex-direction: column;
      }

      .file-remove-button {
        width: 100%;
      }

      .booking-content h3 {
        font-size: 22px;
      }

      .booking-card {
        margin: 12px;
        padding: 10px;
        border-radius: 20px;
      }

      .empty-booking-card {
        min-height: 300px;
        padding: 22px 16px;
      }

      .empty-booking-card .booking-content h3 {
        font-size: 28px;
      }

      .empty-booking-card .booking-content p {
        font-size: 13px;
      }

      .booking-actions .primary-button,
      .booking-actions .ghost-button {
        width: 100%;
      }

      .info-tabs-head {
        flex-direction: column;
      }

      .panel-head {
        flex-direction: column;
      }

      .booking-tabs {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
      }

      .info-tab-buttons {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
      }

      .info-tab-button {
        padding: 8px 9px;
        font-size: 11px;
      }
    }

    @media (max-width: 390px) {
      .top-actions {
        grid-template-columns: 1fr 1fr;
      }

      .hero-copy h1 {
        font-size: 1.9rem;
      }

      .kicker {
        max-width: 100%;
        font-size: 9px;
      }
    }
  
