body {
    background-color: #F3F4F6;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
header {
    background-color: white;
    height: 80px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 5%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
header > a {
    text-decoration: none;
}
.logo h2 {
    margin: 0;
    color: #111827;
    font-size: 20px;
}
.logo p {
    margin: 0;
    color: #6B7280;
    font-size: 12px;
}
.logo {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}
.logo > div {
    display: flex;
    flex-direction: column;
}
main {
    padding: 28px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex: 1;
}
.white-box {
    background-color: white;
    width: 100%;
    max-width: 800px;
    border-radius: 20px;
    padding: 28px 52px;
    box-shadow: 0 4px 10px 5px #E2E6EF ;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 28px;
    box-sizing: border-box;
}
.white-box > p {
    font-size: 24px;
    color: #1F2937;
    font-weight: bold;
    margin: 0;
    text-align: center;
}
span.change-color-city {
    color: #2563EB;
}
form.route {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
span.req {
    color: rgb(213, 83, 83);
}
button.get-route {
    background-color: #2563EB;
    color: white;
    font-size: 24px;
    font-weight: bold;
    border: none;
    padding: 14px 13px;
    min-height: 58px;
    border-radius: 10px;
}
button.reset-route {
    background: none;
    border: none;
    font-size: 16px;
    color: #4B5563;
}
form.route label {
    color: #4B5563;
    font-size: 16px;
    font-weight: 500;
}
div.form_el_row {
    display: flex;
    flex-direction: row;
    gap: 32px;
}
div.form-el-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
form.route input {
    background-color: #F9FAFB;
    border: 1px solid #F3F4F6;
    height: 60px;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 21px 22px;
    font-size: 15px;
    color: #4B5563;
    font-weight: 500;
}
form.route input[type="date"] {
    width: 100%;
}
.group-wishes {
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 21px 22px;
    box-sizing: border-box;
    transition: 0.3s;
}
.group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.group-title {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    color: #374151;
}
.group-title input.parent-wish {
    width: 16px;
    height: 16px;
}
.group-title span {
    font-size: 15px;
    font-weight: bold;
}
.toggle-btn {
    width: 18px;
    height: 18px;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
}
.toggle-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='9' viewBox='0 0 15 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7.5 7L14 1' stroke='%234B5563' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s;
}
.group-wishes.active .toggle-btn::before {
    transform: rotate(180deg);
}
.group-content {
    display: none;
    margin-top: 20px;
    margin-left: 32px;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 22px;
}
.group-wishes.active .group-content {
    display: grid;
}
.group-content label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4B5563;
    cursor: pointer;
}
label:has(input.child-wish) {
    font-size: 15px;
    font-weight: normal;
}
.group-content input.child-wish {
    width: 16px;
    height: 16px;
}
.group-title span,
.group-content label {
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
}
.map{
    width: 100%;
    height: 500px;
    margin-top: 20px;
}
.menu {
    display: none;
}
ul.day-list {
    display: flex;
    list-style-type: none;
    flex-wrap: wrap;
    margin: 0 auto;
}
ul.day-list > li {
    width: 110px;
    font-weight: bold;
    padding: 7px 20px;
    box-sizing: border-box;
    border-radius: 10px;
    cursor: pointer;
    opacity: 50%;
    align-items: center;
    text-align: center;
}
ul.day-list > li.active{
    box-shadow: 0 0px 10px 5px #E2E6EF;
    opacity: 100%;
}
.route-one-day {
    display: none;
}
.route-one-day.active {
    display: block;
}
.download-pdf {
    text-align: center;
}
footer {
    background-color: white;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #6B7280;
    justify-self: end;
}
@media (max-width: 850px) {
    .logo h2 {
        font-size: 16px;
    }
    .logo p {
        font-size: 10px;
    }
    .logo {
        gap: 10px;
    }
    .white-box {
        padding: 25px 20px;
    }
    div.form_el_row {
        flex-wrap: wrap;
        gap: 24px;
    }
    .group-content {
        margin-top: 20px;
        margin-left: 0;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 18px;
    }
    label:has(input.child-wish) {
        font-size: 13px;
    }
}
@media (max-width: 350px) {
    .group-content {
        grid-template-columns: repeat(1, 1fr);
    }
}