*{
    margin:0;
    padding: 0;
    font-family: Arial;
    box-sizing: border-box;
    font-size: 20px;
}
body{
    height: 100vh;
    background-image: url("../img/BG.png");
    background-size: cover;
    overflow: hidden;
}
.content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
}
.item-list {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    overflow: auto;
}
.item{
    width: 340px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    margin: 10px;
    height: auto;
    text-align: center;
}
.item .name{
    font-size: 24px;
    font-weight: bold;
}
.item .value{
    margin-top: 10px;
    font-size: 18px;
}
.modal{
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .5);
    top: 0;
    left: 0;
    z-index: 20;
}
.modal-content {
    position: relative;
    width: 90%;
    background: white;
    border-radius: 10px;
    padding: 20px;
    height: 90%;
    z-index: 20;
}
.modalClose {
    font-weight: bold;
    font-size: 28px;
    position: absolute;
    right: 5px;
    top: 5px;
    width: 35px;
    height: 35px;
    border: 1px solid;
    text-align: center;
    border-radius: 50%;
    padding-top: 2px;
}
.modal-name{
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 20px;
}
.input{
    display: flex;
}
input {
    width: 300px;
}
.input label{
    width: 80px;
    display: block;
}
.step{
    background: #5cb730;
    color: white;
    border-radius: 5px;
    padding: 5px 10px;
    text-align: center;
    font-size: 14px;
    margin-left: 10px;
}
.submitWrapper{
    display: flex;
    justify-content: center;
}
.submit{
    background: #5cb730;
    color: white;
    border-radius: 5px;
    padding: 10px 20px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}
.response-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 30;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}
.response-content {
    padding: 20px;
    background: white;
    border-radius: 5px;
    text-align: center;
}
.response-modal.error .response-content{
    background: #e57777;
}
.response-modal.success .response-content{
    background: #82e577;
}
.okayBtn{
    padding: 10px 15px;
    margin-top: 10px;
    border: 1px solid black;
    border-radius: 5px;
}
.hr {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
    border-bottom: 1px solid;
}
.all_licit_title {
    text-align: center;
    font-weight: bold;
    font-size: 24px;
}
.licit_table{
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    border-spacing: 0px;
}
.all_licit_wrapper{
    overflow: auto;
    max-height: 330px;
}
.licit_table th, .licit_table td{
    width: 33.33%;
    text-align: center;
    border: 1px solid black;
}