.coffeeButton {
    border: none;
    background: none;
    cursor: pointer;
    &:hover {
      svg {
        transform: scale(1.1);
      }
    }
    &::-moz-focus-inner {
      border: 0;
    }
    svg {
      outline: none;
      transition: transform 0.15s linear;
    }
  }
  
  .sticky-column {
    position: sticky;
    left: 0;
    z-index: 2;
    background-color: white;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 5px; /* Adds space to separate content */
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 4;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    overflow: hidden;
    padding: 5px; /* Adds space for better alignment */
}

