* {
    box-sizing: border-box;
}

body {
    background: #6d7b98;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    padding-bottom: 50px;
    width: 100%;
}

.navbar {
    background: #374257;
    padding: 20px 0;
}

.navdiv {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    font-size: 35px;
    font-weight: 600;
    color: white;
    padding-left: 30px;
    text-decoration: none;
}

.back {
    padding-right: 30px;
}

.back button {
    font-size: 20px;
    padding: 5px 25px;
    background-color: #555;
    color: white;
    border: solid;
    border-color: black;
    border-radius: 5px;
    cursor: pointer;
}

.visit button {
    font-size: 20px;
    padding: 5px 25px;
    background-color: #6081b0;
    color: rgb(255, 255, 255);
    border: solid;
    border-color: black;
    border-radius: 5px;
    cursor: pointer;
}

.heading {
    margin-bottom: 0;
}

.slogan {
    margin-top: 0;
    padding-bottom: 10px;
}

.wrapper {
    margin: 0 auto;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0px 1px 5px 3px rgba(0,0,0,0.15);
    position: relative;
    width: 450px;
}

input {
    width:100%;
    border: none;
    height: 50px;
    border-radius: 5px;
    padding: 0px 40px 0px 10px;
    font-size: 18px;
    box-shadow: 0px 1px 4px rgba(0,0,0,0.1);
}

input:focus {
    outline: none;
}

i.fa-search {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    height: 50px;
    width: 50px;
    color: #6d7b98;
    font-size: 22px;
    line-height: 50px;
}

.results {
    padding: 0px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.results ul {margin: 0; padding: 0; }
.results ul li {
    list-style: none;
    border-radius: 3px;
    opacity: 0;
    display: none;
    padding: 8px 12px;
    transition: all .5s linear;
}

.show .results ul li {
    opacity: 1;
    display: block;
}

.show .results {
    padding: 10px;
    max-height: 250px;
    overflow-y: auto;
}

.results ul li:hover {
    background: #ececec
}

.results ul li {
    cursor: pointer;
}

.slider-container {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 20px;
    overflow: hidden;
    gap: 8px;
}

.slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.slider::-webkit-scrollbar {
    display: none;
}

.day {
    min-width: 280px;
    background-color: #ffffff20;
    border-radius: 10px;
    padding: 15px;
    margin: 0 10px;
    color: white;
    text-align: center;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.todo {
    display: flex;
    flex-direction: column;
    min-width: 400px;
    height: 550px;
    background-color: #ffffff20;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 10px;
    color: white;
    text-align: center;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.visit {
    margin: 8px 0;
}

.todo img {
    width: 100%;
    height: 50%;
    object-fit: cover;
}

.todo-content {
    height: 50%;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.photo {
    min-width: 400px;
    height: 250px;
    border-radius: 10px;
    margin: 0 10px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.arrow {
    background: #374257;
    color: white;
    border: none;
    font-size: 30px;
    padding: 10px;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 1;
}

.arrow:hover {
    background: #2a3140;
}
