.cat-button {
  padding: 5px; 
  margin-right: 3px;
}


.cat-button:disabled {
  background-color: gray;
}

.cattile-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.cattile-icon {
  position: absolute; 
  top: 5px;
  right: 5px;
  width: 10%;
  height 10%;
  color: rgb(255, 212, 59);
  transition: 0.3s;
}

.image-item:hover + .cattile-icon {
  transform: scale(1.3);
  top: -30px;
  right: -30px;
  
}

.cattile-icon:hover {
  transform: scale(1.3);
  filter: brightness(1.5);
  }

.show-me-settings {
  background-color: transparent;
  border-color: transparent solid 1px;
  align-items: center;
  width: 500px;
  border: solid #381b04 2px;
  padding: 5px;
  background-color: #f5a4b0;
}


.whichCatSlider {
   -webkit-appearance: none;
    appearance: none;
    width: 60%;
    height: 10px;
    background: linear-gradient(to right, black, gold);
}

/* Track styling for Chrome, Safari, and Edge */
.whichCatSlider::-webkit-slider-runnable-track {
  background: linear-gradient(to right, black, gold);
  /*width: 100%;
  height: 15px;
  cursor: pointer;
  border-radius: 5px;*/
  margin-top: 10px;
  border-radius: 5px;
}

/* Track styling for Firefox */
.whichCatSlider::-moz-range-track {
   background: linear-gradient(to right, black, gold);
   height = 20px;
   border-radius: 5px;
}

.degentext {
  position: relative; 
  width: 500px;
  display: inline-block;
  cursor: pointer;
  margin-top: -55px; 
  margin-left: 10px;
}


.degentip {
  visibility: hidden;
  width: 820px;
  color: gray;
  text-align: center;
  position: absolute;
  top: -25px;
  left: 400px;
  z-index: 10;
}

.degentext:hover .degentip{
  visibility: visible;
}
