.searchArea{
    height: 90%;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 90%;
    margin: 10px auto;
    padding: 20px;
    align-self: center;
    animation: ease-in-out 0.3s fadeInUp;
    transition: all 0.3s;
}
.searchArea h2{
    padding: 10px;
    font-size: 30px;
}
.arow{
    margin-top: 10px;
}
.label{
    font-size: 18px;
    margin-top: 20px;
}
th, td, tr{
    padding: 10px;
    border-bottom: 1px solid #d8d8d8;
    font-size: 18px;
}
.result{
    width: 90%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 10px auto;
    padding: 20px;
    align-self: center;
    animation: ease-in-out 0.3s fadeInUp;
    transition: all 0.3s;
}
.result h2{
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-size: 30px;
}
.result_table{
    width: 100%;;
    border-collapse: collapse;
    margin: 10px auto;
}
input[type="text"]{
    border: 1px solid #61d0ff;
    border-radius: 5px;
    padding: 8px;
    font-size: 18px;
    transition: all 0.3s;
}
input[type="text"]:focus{
    border-color: #005477;
    outline: none;
}
input[type="text"]::placeholder{
    color: #888;
}
.searchArea button{
    margin: 20px auto;
    display: block;
    width: 200px;
    border: #61d0ff;
    border-radius: 5px;
    height: 40px;
    font-size: 16px;
    background: #61d0ff;
    color: white;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}
.searchArea button:hover{
    background: #005477;
    cursor: pointer;
}
#print{
    margin: 20px auto;
    display: block;
    width: 200px;
    border: #61d0ff;
    border-radius: 5px;
    font-size: 16px;
    background: #61d0ff;
    padding: 5px;
    color: white;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}
.searchArea button:hover{
    background: #005477;
    cursor: pointer;
    transition: all 0.3s;
}
@media (prefers-color-scheme: dark) {
    .searchArea{
        background-color: rgba(32, 32, 32, 0.9);
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        width: 90%;
        margin: 10px auto;
        padding: 20px;
        align-self: center;
        animation: ease-in-out 0.3s fadeInUp;
        transition: all 0.3s;
    }
    input[type="text"]{
        border: 1px solid #005477;
        border-radius: 5px;
        font-size: 18px;
        background-color: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        transition: all 0.3s;
    }
    input[type="text"]:focus{
        border-color: #61d0ff;
        outline: none;
    }
    input[type="text"]::placeholder{
        color: #888;
    }
    .searchArea button{
        background: #005477;
        color: white;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
        transition: all 0.3s;
    }
    .searchArea button:hover{
        background: #61d0ff;
        cursor: pointer;
    }
    .result{
        background: rgba(32, 32, 32, 0.9);
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        margin: 10px auto;
        padding: 20px;
        align-self: center;
        animation: ease-in-out 0.3s fadeInUp;
        transition: all 0.3s;
    }
    .result h2{
        color: #ffffff;
        margin-bottom: 20px;
    }
    th, td, tr{
        padding: 10px;
        border-bottom: 1px solid #444;
    }
    .result_table{
        width: 100%;
        border-collapse: collapse;
        margin: 10px auto;
    }
    #print{
        background: #005477;
        color: white;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
        transition: all 0.3s;
    }
    #print:hover{
        background: #61d0ff;
        cursor: pointer;
        transition: all 0.3s;
    }
}
@media screen and (max-width: 768px) {
    h2{
        font-size: 20px;
    }
    table th{
        font-size: 14px;
    }
    table td{
        font-size: 14px;
    }
    #print{
        font-size: 14px;
        width: 150px;
    }
    .searchArea h2{
        font-size: 24px;
    }
    .searchArea button{
        width: 150px;
        font-size: 14px;
    }
    .result h2{
        font-size: 24px;
    }
}