
  .sidebar.svelte-46a0n0 {
    background-color: transparent;
    padding: 0.5rem;
    height: calc(100vh - 200px); /* Fixed height with some space for header/margins */
    position: sticky;
    top: 1rem;
  }
  
  .sidebar-title.svelte-46a0n0 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    position: sticky;
    top: 0;
    background-color: white;
    padding: 0.5rem 0;
    z-index: 10;
  }
  
  .related-apps-list.svelte-46a0n0 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
    height: calc(100% - 3rem); /* Account for title height */
    padding-right: 0.5rem; /* Space for scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #d1d5db transparent;
  }
  
  .related-apps-list.svelte-46a0n0::-webkit-scrollbar {
    width: 6px;
  }
  
  .related-apps-list.svelte-46a0n0::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .related-apps-list.svelte-46a0n0::-webkit-scrollbar-thumb {
    background-color: #d1d5db;
    border-radius: 3px;
  }
  
  .related-app-card.svelte-46a0n0 {
    display: flex;
    flex-direction: column;
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    height: 220px;
    flex-shrink: 0; /* Prevent cards from shrinking */
  }
  
  .related-app-card.svelte-46a0n0:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
    cursor: pointer;
  }
  
  .related-app-card.active.svelte-46a0n0 {
    border: 2px solid #9EF01A;
  }
  
  .related-app-card.active.svelte-46a0n0:hover {
    transform: none;
    box-shadow: none;
    border-color: #9EF01A;
  }
  
  .related-app-card.active.svelte-46a0n0::before {
    content: "Current";
    position: absolute;
    top: 8px;
    right: 8px;
    background: #9EF01A;
    color: black;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
  }
  
  .no-related-apps.svelte-46a0n0 {
    color: #6c757d;
    font-size: 0.875rem;
    font-style: italic;
  }

  /* Desktop Styles */
  .page-layout.svelte-icnflf {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    padding: 0.25rem 1rem 1rem 1rem;
  }

  /* Updated Mobile Styles */
  .mobile-container.svelte-icnflf {
    width: 100%;
    background: #fff;
    padding-bottom: 2rem;
  }

  .categories-bar.svelte-icnflf {
    padding: 1rem;
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .category-tag.svelte-icnflf {
    font-size: 0.9rem;
    color: #4a5568;
    white-space: nowrap;
  }

  .category-tag.svelte-icnflf:not(:last-child)::after {
    content: "•";
    margin-left: 1rem;
    color: #cbd5e0;
  }

  .hero-section.svelte-icnflf {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f7fafc;
  }

  .hero-screenshot.svelte-icnflf {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .hero-placeholder.svelte-icnflf {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #a0aec0;
  }

  .content-section.svelte-icnflf {
    padding: 1.5rem;
  }

  .app-title.svelte-icnflf {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
  }

  .app-payoff.svelte-icnflf {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
  }

  .tags-row.svelte-icnflf {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
  }

  .tag.svelte-icnflf {
    padding: 0.5rem 1rem;
    background: #f7fafc;
    border-radius: 9999px;
    font-size: 0.875rem;
    color: #4a5568;
    white-space: nowrap;
  }

  .department-tag.svelte-icnflf {
    background-color: #111827;
    color: white;
    font-weight: 600;
  }

  .function-tag.svelte-icnflf {
    background-color: #9EF01A;
    color: black;
    font-weight: 600;
  }

  .description-text.svelte-icnflf {
    font-size: 1rem;
    line-height: 1.625;
    color: #4a5568;
  }

  @media (max-width: 768px) {
    .page-layout.svelte-icnflf {
      display: none;
    }
  }

  @media (min-width: 769px) {
    .mobile-container.svelte-icnflf {
      display: none;
    }
  }
