 .app-side-overlay-wrapper {
       position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 9999;
    pointer-events: auto;
  
    animation: overlayFadeIn 0.25s ease-out;
    display: flex;
    align-items: center;
      }

      @keyframes overlayFadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
      }

      /* Side Drawer Panel */
      .app-side-overlay {
            position: absolute;
    bottom: 0;
    /* bottom: 0; */
    /* left: 0; */
    z-index: 10000;
    padding: 0 1.5rem 2rem 1.5rem;
    color: #f3f4f6;
    font-family: var(--font-sans, sans-serif);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow-y: auto;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    scrollbar-width: none;
    box-sizing: border-box;
    border-radius: 10px;
    max-height: 90dvh;
    overflow-y: scroll;
    backdrop-filter: blur(12px);
    background-color: #080a0cc5;
  
      }

      .app-side-overlay::-webkit-scrollbar { display: none; }

      @keyframes slideInLeft {
        from { transform: translateX(-20px); opacity: 0; }
        to { transform: translateX(0); opacity: 1; }
      }


      /* Base Component Styles */
      .td-hero {
        position: relative;
        height: 150px;
        min-height: 150px;
        flex-shrink: 0;
        margin: 0 -1.5rem 0.5rem -1.5rem;
        overflow: hidden;
        background-color: #161a1e;
      }

      .td-hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .td-hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(8, 10, 12, 0.3) 0%, rgba(8, 10, 12, 0.95) 100%);
      }

      .td-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(6px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: #fff;
        font-size: 0.9rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
        z-index: 2;
      }

      .td-close:hover { 
        background: rgba(255, 255, 255, 0.2); 
        transform: scale(1.05);
      }

      .td-header-info {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
        margin-top: -1rem;
        z-index: 1;
      }

      .td-badge-pill {
        align-self: flex-start;
        font-size: 0.6rem;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        font-weight: 700;
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.15);
        padding: 2px 8px;
        border-radius: 12px;
        margin-top: .5rem;
      }

      .td-main-title {
        font-family: var(--font-serif, Georgia, serif);
        font-size: 1.5rem;
        font-weight: 500;
        color: #fff;
        line-height: 1.2;
        margin: 0;
        margin-top: .5rem;
      }

      .td-description {
        font-size: 0.8rem;
        color: var(--text-muted, #a1a1aa);
        line-height: 1.4;
        margin: 0;
      }

      .td-section {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding-bottom: 1.25rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .td-section-header-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .td-section-label {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--text-muted, #a1a1aa);
        font-weight: 600;
      }

      .td-count-sub {
        font-size: 0.7rem;
        color: var(--text-muted, #a1a1aa);
      }

      .td-avatar-stack {
        display: flex;
        align-items: center;
        padding-top: 0.25rem;
      }

      .td-avatar {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 2px solid #fff;
        object-fit: cover;
        margin-left: -10px;
        transition: transform 0.2s;
        cursor: pointer;
      }

      .td-avatar:first-child { margin-left: 0; }
      .td-avatar:hover {
        transform: translateY(-2px) scale(1.05);
        z-index: 2;
      }

      .td-add-member-btn {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px dashed rgba(255, 255, 255, 1);
        background: rgba(255, 255, 255, 1);
        color: #000;
        margin-left: -10px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        transition: all 0.2s;
      }

      .td-dates-row {
        display: flex;
        align-items: center;
        gap: 1rem;
      }

      .td-date-val {
        font-size: 0.95rem;
        font-weight: 600;
        color: #fff;
      }

      .td-nights {
        font-size: 0.75rem;
        color: var(--text-muted, #a1a1aa);
      }

      .td-counter-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .td-counter-label {
        font-size: 0.85rem;
        color: #e4e4e7;
      }

      .td-counter-controls {
        display: flex;
        align-items: center;
        gap: 0.8rem;
      }

      .td-counter-btn {
          width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgb(255 255 255 / 9%);
    background: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: .5rem;
    transition: all 0.2s;
      }

      .td-counter-btn:hover {
        border-color: #fff;
        background: rgba(255, 255, 255, 0.1);
      }

      .td-counter-val {
        font-size: 0.85rem;
        min-width: 14px;
        text-align: center;
      }

      .td-budget-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .td-budget-val {
        font-size: 0.95rem;
        font-weight: 600;
        color: #fff;
      }

      .td-budget-val span {
        font-size: 0.75rem;
        font-weight: 400;
        color: var(--text-muted, #a1a1aa);
      }

      .td-link-box {
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 8px;
        padding: 0.6rem 0.8rem;
        justify-content: space-between;
      }

      .td-link-text {
        font-size: 0.75rem;
        color: #d4d4d8;
        font-family: monospace;
      }

      .td-copy-btn {
        background: none;
        border: none;
        color: #fff;
        font-size: 0.75rem;
        font-weight: 500;
        cursor: pointer;
      }

      .td-share-btn {
        width: 100%;
        padding: 0.8rem;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: none;
        color: #fff;
        font-size: 0.85rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        cursor: pointer;
        transition: background 0.2s, border-color 0.2s;
        margin-top: 0.5rem;
      }

      .td-share-btn:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: #fff;
      }