@import url(tools.css);

.login {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login .card {
    width: 300px;
    height: auto;
    padding: 30px;
    border: 1px solid #ccc;
    border-radius: 6px;
}
.login .card h1 {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 18px;
    color: rgb(8, 144, 223);
}
.login .card label {
    float: left;
    width: 100%;
    margin-bottom: 4px;
}
.login .card input {
    float: left;
    width: 95%;
    padding-inline: 5px;
    height: 45px;
    border: 1px solid #ccc;
    outline-color: rgb(8, 144, 223);
    margin-bottom: 20px;
    border-radius: 4px;
}
.login .card button {
    float: left;
    width: 100%;
    font-size: 14px;
    height: 40px;
    border-radius: 30px;
    border: none;
    background-color: rgb(8, 144, 223);
    color: white;
    font-weight: 800;
}
nav {
    width: 20%;
    float: left;
    height: 100vh;
    padding-top: 20px;
    padding-bottom: 20px;
    overflow: auto;
    background-color: rgb(6, 34, 53);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    color: #ffffff !important;
}
nav h1 {
    float: left;
    width: 100%;
    text-align: center;
    color: #ffffff !important;
    font-size: 20px;
}
nav .group {
    width: 100%;
}
nav .group .list {
    width: 95%;
    float: right;
    display: block;
    margin-top: 20px;
}
nav .group .list a {
    display: flex;
    justify-content: left;
    align-items: center;
    color: #ffffff;
    padding: 14px 16px;
    font-size: 15px;
    text-decoration: none;
}
nav .group .list a:hover {
    background-color: #ffffff;
    color: rgb(6, 34, 53);
    border-radius: 30px 0px 0px 30px ;
}
nav .group .list a.active {
    background-color: #ffffff;
    color: rgb(6, 34, 53);
    border-radius: 30px 0px 0px 30px ;
}
nav .group .list a.active svg {
    fill: rgb(6, 34, 53);
}
nav .group .list a svg {
    width: 16px;
    height: 16px;
    float: left;
    margin-right: 10px;
    fill: #ffffff;
}
nav .group .list a:hover svg {
    fill: rgb(6, 34, 53);
}
#toggle {
    fill: white;
    width: 24px;
    height: 24px;
    float: right;
    display: none;
}
main {
    float: left;
    width: 80%;
    display: flex;
    justify-content: center;
    margin-left: 20%;
    overflow: auto;
}
main .group {
    width: 95%;
    float: left;
    margin-top: 70px;
}
main h1 {
    float: left;
    width: 100%;
}
main .dash {
    float: left;
    width: 100%;
    margin-top: 20px;
}
main .dash .card {
    float: left;
    width: 25%;
    border: 1px solid #ccc;
    margin-right: 30px;
    margin-bottom: 30px;
}
main .dash .card h3 {
    background-color: rgb(6, 34, 53);
    height: 40px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 10px;
}
main .dash .card h2 {
    font-size: 30px;
    margin-top: 50px;
    text-align: right;
    margin-right: 20px;
}
main .dash .card h2 span {
    font-size: 15px;
    margin-right: 20px;
}

main .dash .card h3 svg {
    fill: white;
    float: right;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
main .dash .card a {
    border-top: 1px solid #ccc;
    font-size: 12px;
    text-decoration: none;
    padding-left: 10px;
    display: block;
    margin-top: 20px;
    height: 30px;
    padding-top: 10px;
    text-align: right;
    padding-right: 10px;
    font-weight: 700;
}
main .box {
    float: left;
    width: 95%;
    border:1px solid #ccc;
    height: auto;
    margin-top: 20px;   
    padding: 10px;
    margin-bottom: 20px;
}
main .box .long {
    width: 100%;
    float: left;
    margin-top: 10px;
}
main .box label {
    float: left;
    margin-right: 10px;
    height: 20px;
    margin-bottom: 10px;
}
main .box select {
    float: left;
    width: 100px;
    margin-right: 10px;
    height: 20px;
    margin-bottom: 10px;
}
main .box input[type=date] {
    float: left;
    width: 100px;
    margin-right: 10px;
    height: 20px;
    margin-bottom: 10px;
}
main .box input[type=text] {
    float: left;
    width: 200px;
    margin-right: 10px;
    height: 30px;
    padding-inline: 10px;
    margin-bottom: 10px;
}
main .box input[type=checkbox] {
    float: left;
    width: 20px;
    margin-right: 10px;
    height: 20px;
    margin-bottom: 10px;
}
main .box .court {
    float: left;
    width: 100%;
}
main .box button {
    float: right;
    height: 30px;
    padding-inline: 30px;
    border-radius: 30px;
    border: none;
    background-color: rgb(109, 12, 81);
    color: white !important;
}
main .table {
    float: left;
    width: 100%;
    overflow: auto;
}
main .table::-webkit-scrollbar {
    width: 0;
}
main .table table {
    float: left;
    border-collapse: collapse;
    width: 100%;
}
main .table thead {
    background-color: rgb(12, 109, 59);
}
main .table th {
    color: white;
    padding: 10px;
    text-align: center;
}
main .table td {
    padding: 10px;
    text-align: center;
}
main .table tr:nth-child(even){
    background-color: rgba(227, 227, 227, 0.311);
    border: 1px solid #ccc;
    border-left: none;
    border-right: none;
}
main .table td button {
    padding-inline: 15px;
    height: 25px;
    border-radius: 30px;
    border: none;
    background-color: rgb(10, 74, 163);
    color: white;
    font-weight: 700;
}
main .box textarea {
    float: left;
    width: 90%;
    margin-right: 10px;
    height: 80px;
    resize: none;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;    
    margin-bottom: 10px;
}
main .table h4 {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}
main .table .sms {
    padding: 20px;
    background-color: rgba(201, 194, 194, 0.434);
    font-size: 20px;
    float: left;
}
main .tak {
    float: left;
    width: 80%;
    margin-inline: 10%;
    padding: 10px;
}
main .tak #itemTabCheck {
    float: left;
    width: 48%;
    margin-inline: 1%;
    height: auto;
}
main .tak #itemTabCheck h1 {
    float: left;
    width: 100%;
    font-size: 18px;
    margin-bottom: 10px;
}
main .tak .long {
    float: left;
    width: 100%;
    margin-bottom: 5px;
    position: relative;
}
main .tak  label {
    float: left;
    width: 100%;
    font-size: 13px;
    margin-bottom: 3px;
}
main .tak input {
    width: 80%;
    height: 30px;
    margin-bottom: 10px;
    padding-inline: 3%;
}
main .tak select {
    width: 86%;
    height: 30px;
}
main .tak  textarea {
    width: 80%;
    padding-inline: 3%;
    height: 80px;
    resize: none;
    padding-top: 3px;
}
main .tak button {
    float: left;
    padding-inline: 20px;
    height: 30px;
    border-radius: 30px;
    background-color: rgb(12, 109, 59);
    color: white;
    border: none;
}
main .tak .court {
    float: left;
    width: 100%;
}
main .tak .court div {
    float: left;
    width: 100%;
    position: relative;
}
main .tak .court span {
    font-size: 13px;
    position: absolute;
    right: 60px;
    top: 25px;
}
main .tak h2 {
    float: left;
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
    background-color: rgb(6, 34, 53);
    padding: 10px;
    color: white;
}
main .form {
    float: left;
    width: 100%;
}
main .form h1 {
    float: left;
    margin-bottom: 10px;
}
main .form .long {
    float: left;
    margin-left: 10px;
    height: 50px;
}
main .form input {
    height: 25px;
}
main .form label {
    float: left;
    margin-top: 5px;
    margin-right: 5px;
}
main .form select {
    height: 30px;
    width: 150px;
}
main .form .court {
    float: left;
    width: 100%;
}
main .form button {
    padding-inline: 50px;
    height: 35px;
    border-radius: 30px;
    border: none;
    background-color: rgb(12, 109, 59);
    color: white;
}


#addBloc {
    float: left;
    width: 100%;
    height: 100vh;
    overflow: auto;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.324);
}
#addBloc .group {
    float: left;
    width: 300px;
    height: auto;
    padding: 20px;
    background-color: white;
}
#addBloc h1 {
    float: left;
    text-align: center;
    color: rgb(10, 74, 163);
    font-size: 20px;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
    max-width: 300px;
}
#addBloc label {
    float: left;
    width: 100%;
}
#addBloc input {
    float: left;
    width: 100%;
    height: 30px;
    margin-bottom: 10px;
}
#addBloc select {
    width: 100%;
    height: 25px;
}
#addBloc button {
    padding-inline: 20px;
    width: 200px;
    height: 40px;
    border-radius: 30px;
    margin-top: 10px;
    border: none;
    background-color: rgb(12, 109, 59);
    color: white;
}
#addBloc a {
    float: right;
    color: rgb(10, 74, 163);
    border-radius: 30px;
    height: 35px;
    background-color: rgba(10, 74, 163, 0.053);
    border: 1px solid rgb(10, 74, 163);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: 10px;
}
#addBloc span {
    float: left;
    color: rgba(255, 0, 0, 0.785);
}