*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: Arial, Helvetica,sans-serif;
    color: white;
}
li{
    list-style: none;
}
input,select{
    color: black;
}
input,button,select{
    outline: none;
}
body{
    background-color: black;
    width: 100vw;
    height:100%;
    overflow: hidden;

}
.container {
    width:100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-y:auto;
    overflow-x:none;
}
.nav{
    background-color: rgb(9, 17, 44);
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    line-height: 30px;
    color: white;
    align-items: center;
    text-align: center;
}
.nav .header{
    font-size: calc(20% + 10px);
}
.nav .navigations{
    display: flex;
    flex-direction: row;
    /*font-size: 12px;*/
    width: 100%;
    justify-content: space-evenly;
    /*justify-content: space-between;*/
}
.nav  a{
    text-decoration-color: unset;
    color: white;
    font-size: calc(20% + 10px);
    text-align: center;

}
.nav .navigations li{
    margin-right: 10px;
    padding: 2px 2px;
    /*background-color:white ;*/
    width: auto;
}
.wrapper{
    padding: 10px;
}
.box-liner{
    /*border:1px solid black;*/
    width: 100%;
    /*padding: 10px;*/
}
.box-liner .header {
    /*margin: 10px;*/
    width: 100%;
    background-color: black;
    padding: 10px;
    color: white;
    font-size: calc(30% +1rem);
    border-radius: 3px;
}
.box-liner .list-box{
    margin-top: 30px;
    /*background-color: rgba(128, 128, 128, 0.45);*/
    width: 100%;
    /*padding: 10px;*/
}
.box-liner .list-box table{
    width: 100%;
    border-radius: 8px;
    /*background-color: rgba(255, 69, 0, 0.3);*/
    /*padding: 10px;*/
}
.box-liner .list-box table thead{
    background-color: black;
    color: white;
}
.box-liner .list-box table tbody{
    background-color: rgba(128, 128, 128, 0.37);
    width: 100%;
}
thead td,tbody td{
    padding: 10px;
    text-align: center;
}
.btn{
    text-decoration: none;
    text-decoration-color: none;
    text-decoration-style: unset;
    padding: 6px 15px;
    width: 100%;
}
.btn.edit{
    background-color: orangered;
    /*border: 0.5px solid grey;*/
    color: white;
    border-radius: 6px;
    border:1px solid orangered;

    /*margin: auto;*/
}
.box-liner .input-box{
    /*display: flex;*/
    /*flex-direction: column;*/
    margin: 20px 0px;
}
.box-liner .input-box label{
  margin: 10px;
}
.box-liner .input-box input, .box-liner .input-box select{
    padding: 8px;
    border-radius: 8px;
    border:1px solid #ccc;
    outline: none;
    width: 100%;
    margin-top: 20px;
    /*margin-bottom: 20px;*/
}

.box-liner .input-box select{
}
.box-liner .input-box button, button.submit{
    width: 100%;
    padding: 10px;
    background-color: rgba(24, 101, 203, 0.97);
    outline: none;
    border:1px solid #ccc;
    color:white;
    border-radius: 8px;
}
.inactive{
    display: none;
    margin: 0px;
}
.input-field.header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.input-field.header .field{
    display: flex;
    width: 50%;
    justify-content: space-evenly;
}

.input-field.header .field input{
    outline: none;
    padding: 4px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border:1px solid #ffff;
    width: 70%;
    background:none;
    color: white;
}

.input-field.header .field button{
    width: 30%;
    padding: 4px;
    background: #fff;
    outline: none;
    color:black;
    border:1px solid #fff;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
.box-liner .list-box table tbody tr td select{
    width: 100%;
    background: none;
    padding:8px;
    border:1px solid #fefe;
    border-radius: 3px;
    outline: none;
}
.container.center{
    height: 100vh;
    background: black;
    justify-content: center;
    align-items: center;
}
.container.center .box.form{
   display:flex;
    background: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    width: 70% ;
    border-radius:8px;
}
.container.center .box.form *{
    width:100%;
    margin: 10px 0;
    padding: 7px;
}
.container.center .box.form .title{
    font-size: calc(50% +10px);
    font-weight: bold;
    color: black;
}
.container.center .box table{
    font-size: calc(50% + 5px);
}

.container.center .boxer{
    /*background: #ddd;*/
    padding: 6px;
    display: flex;
    flex-direction: column;
    width: 70%;
}
.container.center .boxer .field{
    /*background: black;*/
    /*padding: 10px;*/
    margin-top: 20px;
    max-width: 100%;
    width: 100vw;
    display:flex;
    justify-content: space-evenly;
    flex-direction: column;
    color: white;
}
.container.center .boxer .field input{
    padding: 8px;
    margin:0;
    width:80%;
    border-radius: 5px;
    border: 1px solid white;
}
.container.center .boxer .field.input button{
    width: 17%;
    margin: 0;
    font-weight: bold;
    cursor: pointer;
}
.container.center .boxer .field button{
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border:1px solid #ccc;
    background: orangered;
    color:white;
    font-weight: bold;
}
button:disabled{
    color: grey;
    opacity: 0.4;
}
.container.center .boxer .field.output{
    width: 100%;
    background-color: rgba(173, 178, 189, 0.16);
    /*margin: auto;*/
    /*background: #fff;*/
    padding: 0;
    margin-top: 20px;
    border-radius: 8px;
    color:white;

}
.container.center .boxer .field.output thead td{
    border-bottom: 1px solid #ccc;
}
.container.center .boxer .field.output table{
    width: 100%;
    /*background-color: grey;*/
    position: relative;
    /*padding: 10px;*/
}

@media (max-width: 600px) {
    .container.center .boxer{
        width: 90%;
        margin: 0;
    }
    .container.center .boxer .field.output table thead{
        width: auto;
    }
    .container.center .boxer .field.output tbody,.container.center .boxer .field.output thead{
        font-size: .65rem;
    }
    .container.center .boxer .field.output table td{
        border-bottom: 1px solid #ddd;
    }
    .container.center .boxer .field.output{
        width: 100%;
        /*background-color: rgba(0, 89, 255, 0.37);*/
        /*margin: auto;*/
        /*background: #fff;*/
        padding: 0;
        margin-top: 20px;
        border-radius: 8px;
    }
    .container.center .boxer .field.output table{
        width: auto;
        color: white;
        background: none;
        /*padding: 8px;*/
        display: grid;
        grid-template-row: 1fr 1fr 1fr;
       /*grid-template-columns: 2fr 1fr 2fr;*/
        /*grid-template-columns: 1fr ;*/
    }
    .container.center{
        max-width: 100%;
        overflow:hidden;
    }
    .container.center .boxer .field.input{
        /*background: bisque;*/
        padding: 6px;
    }
    /*.container.center .boxer .field.input input{*/
    /*    width: 17rem;*/
    /*}*/
    /*.container.center .boxer .field.input button{*/
    /*    width: 5rem;*/
    /*    font-weight: bold;*/
    /*}*/
}
/*.container.center .boxer{*/
/*    width: 90%;*/
/*    margin: 0;*/
/*}*/
/*.container.center .boxer .field.output table thead{*/
/*    width: auto;*/
/*}*/
.container.center .boxer .field.output tbody,.container.center .boxer .field.output thead{
    font-size: .65rem;
    width: 100%;
}
.container.center .boxer .field.output table td{
    border-bottom: 1px solid #ddd;
}

/*.container.center .boxer .field.output table{*/
/*    width: 100%;*/
/*    !*color: black;*!*/
/*    background: none;*/
/*    !*padding: 8px;*!*/
/*    display: grid;*/
/*    grid-template-row: 1fr 1fr 1fr;*/
/*    !*grid-template-columns: 2fr 1fr 2fr;*!*/
/*    !*grid-template-columns: 1fr ;*!*/
/*}*/
.container.center{
    max-width: 100%;
    overflow:hidden;
}
/*.container.center .boxer .field.input{*/
/*    !*background: bisque;*!*/
/*    padding: 6px;*/
/*}*/
/*.container.center .boxer .field.input input{*/
/*    width: 33rem;*/
/*}*/
/*.container.center .boxer .field.input button{*/
/*    !*width: 12rem;*!*/
/*    font-weight: bold;*/
/*}*/

i{
    font-size: 2rem;
}

.alert{
    position: fixed;
    /*transform: translate(-50%,-50%);*/
    top: 1;
    background: grey;
    padding: 0;
    margin: 0;
}

.alert .box{

    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    max-width: 70%;
    width:300px;
    border-radius: 8px;
    border:1px solid #ccc;
    box-shadow: .5px .5px .5px .5px #ddd;
}
.alert .box .title{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    width: 100%;
}
.alert .box .title .error{
    color: red;
}
.alert .box .message{
    width:100%;
    padding: 10px 0;
    font-size: 1rem;
}