body{
  font-family:sans-serif;
}

label {
  white-space:nowrap;
}

.hscroll-list {
  margin-bottom: 20px;
}

input[type="radio"][disabled] + label 
{
    color: lightgray;
}

option:disabled{
  color: lightgray;
}

.scroll-container {
  overflow-x: auto;
  white-space: nowrap; /* Prevents wrapping */
  height: 400px;
}

.scroll-container ul {
  display: flex;
  padding: 0;
  margin: 0;
}

.scroll-container li {
  list-style: none;
  margin-right: 10px;
  position: relative; /* For item overlay positioning */
  height: 350px;
  width: 350px;
}

.item {
  /*width: 200px; /* Adjust as needed */
  height: 360px;
  width: 360px;
  width: 360px;
  position: relative; /* For item overlay */
  text-indent: 50px;
  /*border-color: black;
  border-style: solid;*/
  box-shadow: 10px 10px 8px #888888;
}

.item img {
  /*width: 100%;*/
  height: 70%;
  display: block; /* Removes bottom space */
  margin: auto;

}

.item-bluetooth {
  position: absolute;
  bottom: 10px;
  left: 0px;
  width: 100%;
  text-indent: 0px;
  display: block;
}

.item-overlay {
  position: absolute;
  text-indent: 0px;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 200, 0.7);
  color: white;
  padding: 10px;
  width: 100%;
  height: 100%;
  display: none; /* Hidden by default */
  box-sizing: border-box;
}

.item:hover .item-overlay {
  display: block; /* Show on hover */
  text-wrap: wrap;  
  font-family: sans-serif;
}