* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: chocolate;
    padding:  0 20px;
}

.title {
    text-align: center;
}

.wrapper {
    max-width: 450px;
    margin: 15px auto;
    display: flex;
}

.wrapper .search-input {
    position: relative;
    background-color: #fff;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0px 1px 5px 3px rgba(0, 0, 0, 0.12);
}

.search-input input {
    height: 55px;
    width: 100%;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 0 60px 0 20px;
    font-size: 18px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
}

.search-input .icon {
    height: 55px;
    width: 55px;
    line-height: 55px;
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    font-size: 20px;
    color: chocolate;
    cursor: pointer;
}

.results {
    max-height: 0px;
    padding: 0px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
}

.search-input .results li {
    list-style: none;
    cursor: default;
    display: none;
}

.results li:hover {
    background: #efefef;
}

#randoBtn {
    height: 55px;
    width: 65px;
    background-color: #fff;
    outline: none;
    border: none;
    border-radius: 5px;
    margin: 0px 5px;
    font-size: 18px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
}

#randoBtn .shuffle {
    color: chocolate;
    margin-right: 10px;
}

#randoBtn .glass {
    color: chocolate;
}

#drink-display {
    display: none;
    background: aliceblue;
    margin: auto;
    padding: 10px 60px;
    max-width: 720px;
    max-height: 1000px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0px 1px 5px 3px rgba(0, 0, 0, 0.12);
    overflow-y: auto;
    z-index: -1;
}

/* active */
.search-input.active .results {
    max-height: 280px;
    padding: 10px 8px;
    opacity: 1;
    pointer-events: auto;
} 

.search-input.active .results li {
    padding: 8px 12px;
    width: 100%;
    border-radius: 3px;
    display: block;
}

#drink-display.active {
    display: block;
}

.category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 20px auto;
}

.category-btn {
  padding: 8px 16px;
  border: 1px solid #ccc;
  border-radius: 4px; /* Gives that rounded "pill" look */
  background-color: #f9f9f9;
  cursor: pointer;
  transition: all 0.2s ease;
}

.category-btn:hover {
  background-color: #e0e0e0;
  transform: scale(1.05); /* Slight pop effect on hover */
}