/* palette-test.css - Additional styles needed */

 
  .tab-container {
    margin-bottom: 1.5rem;
  }
  
  .tab-selector {
    display: flex;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 0.25rem;
    padding: 0.25rem;
    max-width: fit-content;
  }
  
  .tab-button {
    border: none;
    background: transparent;
    color: var(--on-layer-background);
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.875rem;
    border-radius: 0.25rem;
    margin: 0;
  }
  
  .tab-selected {
    /* The selected tab uses the primary-container background */
    color: var(--on-primary-container);
  }
  
  .palette-section {
    margin-bottom: 1.5rem;
  }
  
  .palette-name {
    margin: 0.5rem 0;
    font-weight: 500;
    font-size: 1rem;
  }
  
  .color-samples {
    display: flex;
    border-radius: 0.25rem;
    overflow: hidden;
  }
  
  .color-sample {
    flex: 1;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 500;
    position: relative;
  }
  
  .shade-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Text color is already set by the utility classes */
  }
  .color-chip {
    padding: 0.5rem;
    flex: 1;
    min-height: 3rem;
    &.large {
      height: 8rem;
    }
  }