body{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: #1E202B;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container{
    width: 80%;
    height: 100dvh;
    display: flex;
    flex-flow: column;
    justify-content: center;
    /* align-items: center; */
    gap: 50px;
}
.search-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.search-box{
    width: 100%;
    height: 60px;
    background-color: #3f435c;
    border: none;
    border-radius: 50px;
    padding-left: 20px;
    color: white;
    font-size: 1.6rem;
    outline: none;
    font-weight: 500;
}
.search-wrapper::after {
    content: "Find";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px; /* Increased width to fit the word "Find" */
    height: 50px;
    background-color: #009AD8;
    border-radius: 50px;
    position: absolute;
    right: 5px; /* Slight offset for a cleaner look */
    top: 5px;
    color: white;
    cursor: pointer;
}
.days{
    width: 100%;
    display: flex;
}

.card{
    width: calc(100% / 3);
    min-height: 50vh;
}
.card-0,.card-2{
    background-color: #323544;
}
.card-1{
    background-color: #262936;
}
.day{
    text-align: center;
}
.day p{
    margin: 0;
    padding: 5px;
    color: white;
}
.day-0,.day-2{
    background-color: #2D303D;
}
.day-1{
    background-color: #222530;
}

.day-info{
    display: flex;
    flex-flow: column;
    /* justify-content: center; */
    align-items: center;
    color: #d8b500;
    font-size: 2rem;
}
.day-info-div{
    display: flex;
    flex-flow: column;
    justify-content: center;
}
