
/** Elements in this container are of class letter-card, i.e. in letters.css */
#basket-letter-container{
	display: grid;
  grid-template-columns: repeat(auto-fit, 150px);
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
  justify-content: center;
}


#basket-info {
    display: flex;
    flex-wrap: wrap;
    margin: 5px;
    gap: 20px;              /* Spacing between items */
}

#histogram {
    width: 320px;
    height: 320px;
    flex-shrink: 0; /* Prevent shrinking */
}

.basket-element{
  /*background: white;*/
  /*border-radius: 8px;*/
  /*margin: 5px;*/
  /*padding: 10px;*/
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid #dee2e6;
}