@import url('https://fonts.googleapis.com/css2?family=Khmer&family=Noto+Sans+Khmer:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans Khmer", sans-serif;
}
header div img {
    width: 100%;
    max-width: 250px;
    display: block;
}

body{
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#radio{
    display: flex;
}
.radio{
    display: flex;
    align-items: center;
    padding: 5px 10px;
}
.radio input{
    margin-right: 5px ;
}

.container {
    border: none;
    border-radius: 10px;
    box-shadow: 1px 1px 10px gray;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.search{
    width: 100%;
    border-top: 2px solid #2c61a5;
    padding-top: 30px;
    margin-top: 10px;
}
/*------------table-----------*/
.info{
    border: 1px solid #154584;
    border-radius: 6px;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}
table tr td{
    padding: 12px 4px;
}


/*------------text-----------*/
p{
    color: red;
    text-align: center;
    padding-top: 14px;
    font-size: 18px;
}



/*------------btn-----------*/
.btn{
    background-color: #2c61a5;
    color: white;
}

.btn-update{
    background-color: #2c61a5;
    color: white;
    border: 0;
    border-radius: 3px;
    margin-top: 20px;
    margin-bottom: 10px;
    padding: 8px 40px;
    text-decoration: none;
    font-size: 15px;
    border-radius: 25px;
}



/*------------hover-----------*/
.btn:hover{
    background-color: #154584;
    color: white;
}