@layer components {
  .my-projects-toolbar__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: 100%;
  }
  @media (min-width: 1024px) {
    .my-projects-toolbar__content {
      gap: 2rem;
    }
  }
  .my-projects-toolbar__empty-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
    background-color: var(--theme-surface-secondary);
    border-radius: 0.5rem;
  }
  @media (min-width: 1024px) {
    .my-projects-toolbar__empty-card {
      gap: 2rem;
    }
  }
  .my-projects-toolbar__project-name {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
  }
  .sheet--my-projects .sheet__title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
  @media (min-width: 1024px) {
    .sheet--my-projects .sheet__title {
      line-height: 1;
    }
  }
  .sheet--my-projects .sheet__header {
    border-bottom: none;
    padding: 1rem 1.5rem;
  }
  @media (min-width: 768px) {
    .sheet--my-projects .sheet__header {
      padding: 1rem 4rem;
    }
  }
  @media (min-width: 1024px) {
    .sheet--my-projects .sheet__header {
      padding: 1.5rem;
    }
  }
  .sheet--my-projects .sheet__content {
    padding: 1.5rem 1.5rem 0;
  }
  @media (min-width: 768px) {
    .sheet--my-projects .sheet__content {
      padding: 1.5rem 4rem 0;
    }
  }
  @media (min-width: 1024px) {
    .sheet--my-projects .sheet__content {
      padding: 2rem 1.5rem 0;
    }
  }
}