body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.main-section{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    background-color: #d8eff7;
    padding-bottom: 40px;
}
.main-wrapper{
    width: 50%;
}

.main-section .main-title{
    font-size: 34px;
    text-align: center;
}

.main-section .intro{
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
}

.dropdown-box{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.dropdown-box .subgroup{
    width: 48%;
}

.dropdown-box #select1, #select2{
    width: 100%;
    height: 40px;
    font-size: 18px;
    padding: 0px 10px;
    border-radius: 10px;
    border: 1px solid #293855;
    outline: none;
}

.dropdown-box #from,#to{
    font-size: 18px;    
    width: 300px;
    margin: 0px;
}

.message{
    color: #c51010;
    margin: 0px;
    width: 300px;
    margin-top: 5px;
    font-size: 14px; 
    visibility: hidden;
}

.container .group1{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 10px;
}
.container .group1 #point{
    margin: 0px;
}
.container .group1 .input-box{
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
    outline: none;
    border: 1px solid #293855;
    height: 40px;
    border-radius: 10px;
    padding-left: 20px;
    font-size: 18px;
}

.container .group2{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.container .group2 .btn{
    width: 48%;
    height: 40px;
    border: 1px solid #293855;
    color: #293855;
    background-color: transparent;
    border-radius: 10px;
    font-size: 22px;
    cursor: pointer;
}
.container .group2 .btn:hover{
    background-color: #293855;
    color: #fff;
}

.container .group3{
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}
.container .group3 #result_text{
    margin: 0 0 5px 0;
}
.container .group3 .result{
    width: 100%;
    height: 50px;
    padding: 10px;
    align-items: center;   
    border-radius: 10px;
    overflow: auto;
    background-color: #fff;
    border: 1px solid #293855;
    font-size: 23px;
    display: flex;
    flex-wrap: wrap;
    margin: 0px;
    box-sizing: border-box;
}
.container .group3 .result::-webkit-scrollbar{
    height: 0px;
}
.Menuback{
    display: none;
}
.footer{
    display: flex;
    width: 100%;
    height: 70px;
    background-color: rgb(23, 27, 39);
    justify-content: center;
    align-items: center;
    color: #fff;
}
