body.main-bg {
    background: #FF9700;
    min-height: 100vh;
}
.recipe-card {
    border-radius: 24px;
    box-shadow: 0 8px 32px #e97f0b33;
    transition: box-shadow .2s, transform .2s;
}
.recipe-card img {
    border: 2px solid black;
}
.recipe-card:hover {
    box-shadow: 0 14px 40px #dd9533d5;
    transform: translateY(-3px) scale(1.04);
}
input, select {
    outline: none;
}
.recipe-title-scroll {
  position: relative;
  width: 170px;
  min-height: 28px;
  overflow: hidden;
  white-space: nowrap;
}
.recipe-title-scroll span {
  display: inline-block;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
}
::-webkit-scrollbar-thumb { background: #ffb253; border-radius: 8px;}
::-webkit-scrollbar { background: #ffd992; width: 7px;}