:root {
    --bs-primary: #3DDAFD;
    --bs-blue: #3DDAFD;
}

body{
    background-color: #F4F4F4;
}

.main{
    overflow: hidden;
    margin-top: 70px;
}

form input:-webkit-autofill,
form input:-webkit-autofill:hover,
form input:-webkit-autofill:focus,
form input:-webkit-autofill:active {
    /* background remain same */
    transition: background-color 5000s ease-in-out 0s;
}




.ts-wrapper{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center
}
.w-100 {
    width: 100%;
}

.ts-nav-link {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
    line-height:100%;
}
.ts-nav-link:hover {
    color: white !important;
}

.ts-form-container{
    background-color:white;
    margin-top:8rem;
    margin-bottom:4rem;
    padding:1.5rem;
    border-radius:4px;
}

a {
    color: #3DDAFD;
    text-decoration: underline;
}

    a:hover {
        color: #00BDE7;
    }
.btn-primary {
    background-color: #3DDAFD;
    border-color: #3DDAFD;
}

    .btn-primary:hover {
        background-color: #00D1FF;
        border-color: #00D1FF;
    }

    .btn-check:focus + .btn-primary, .btn-primary:focus {
  
        background-color: #00D1FF;
        border-color: #00D1FF;
        box-shadow: 0 0 0 .25rem rgba(49,132,253,.5);
    }

.ts-form-card{
    max-width:440px;
    margin-inline:auto;
}

.ts-navbar {
    justify-content: space-between;
}

.navbar-brand img{
    width:80px;
}


.ts-table-header{
    top:75px;
}
.form-control:focus {
    box-shadow: none;
    border-color: #00D1FF;
}
.nav-layout {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}
.search-panel{
    height: 4rem;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.data-section{
    padding: 1rem 2rem;
}
#header{
    padding: 1rem 2rem;
}
.table-responsive{
    max-height: 600px;
}

@media ( max-width:576px){
    .data-section {
        padding: 1rem;
    }

}

#menu{
    display: none;
    position: relative;
}
.menu-items{
    display: none;
    /* display: flex; */
    flex-direction: column;
    border-radius: 3px;
    position: absolute;
    top: 4rem;
    background-color: white;
    width: 15rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    transition: all ease-in-out 500ms;
    transform: translateX(20rem);
}
.menu-items a{
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
    padding: .6rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all ease-in-out 300ms;
    cursor: pointer;
}
.menu-items a:hover{
    background-color: rgb(222, 222, 222, 0.25);
}
.menu-icon{
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
}   
#menu:checked + .menu-items {
  display: flex;
  transform: translateX(0rem);
}






@media screen and (max-width: 991px) {
    table {
        border: 0;
    }



        table thead {
            border: none;
            clip: rect(0 0 0 0);
            height: 1px;
            margin: -1px;
            overflow: hidden;
            padding: 0;
            position: absolute;
            width: 1px;
        }

        table tr {
            border-bottom: 3px solid #ddd;
            display: block;
            margin-bottom: .625em;
        }

        table td {
            border-bottom: 1px solid #ddd;
            display: block;
      
            text-align: right;
        }

            table td::before {
                /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
                content: attr(data-label);
                float: left;
                font-weight: bold;
                text-transform: uppercase;
            }

            table td:last-child {
                border-bottom: 0;
            }
}






.modal-confirm {
    color: #636363;
    width: 400px;
}

    .modal-confirm .modal-content {
        padding: 20px;
        border-radius: 5px;
        border: none;
        text-align: center;
        font-size: 14px;
    }

    .modal-confirm .modal-header {
        border-bottom: none;
        position: relative;
    }

    .modal-confirm h4 {
        text-align: center;
        font-size: 26px;
        margin: 30px 0 -10px;
    }

    .modal-confirm .close {
        position: absolute;
        top: -5px;
        right: -2px;
    }

    .modal-confirm .modal-body {
        color: #999;
    }

    .modal-confirm .modal-footer {
        border: none;
        text-align: center;
        border-radius: 5px;
        font-size: 13px;
        padding: 10px 15px 25px;
    }

        .modal-confirm .modal-footer a {
            color: #999;
        }

    .modal-confirm .icon-box {
        width: 80px;
        height: 80px;
        margin: 0 auto;
        border-radius: 50%;
        z-index: 9;
        text-align: center;
        border: 2px solid #f15e5e;
    }

        .modal-confirm .icon-box i {
            color: #f15e5e;
            font-size: 46px;
            display: inline-block;
            margin-top: 13px;
        }

    .modal-confirm .btn {
        color: #fff;
        border-radius: 4px;
        background: #60c7c1;
        text-decoration: none;
        transition: all 0.4s;
        line-height: normal;
        min-width: 120px;
        border: none;
        min-height: 40px;
        border-radius: 3px;
        margin: 0 5px;
        outline: none !important;
    }

    .modal-confirm .btn-info {
        background: #c1c1c1;
    }

        .modal-confirm .btn-info:hover, .modal-confirm .btn-info:focus {
            background: #a8a8a8;
        }

    .modal-confirm .btn-danger {
        background: #f15e5e;
    }

        .modal-confirm .btn-danger:hover, .modal-confirm .btn-danger:focus {
            background: #ee3535;
        }

.trigger-btn {
    display: inline-block;
    margin: 100px auto;
}


/** Nes style **/
.container{
    max-width: 1300px;
}
hr{
    margin-bottom: 30px;
    border: 1px solid;
}
select{
    border-color: #dee2e6;
    border-radius: 5px;
    padding: 0px 5px;
}
.first-col{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.first-col .subject{
    margin-bottom: 24px;
}
.first-col .subject-lebel{
    margin-bottom: 24px;
}
#submit-button{
    margin: 0 auto;
    width: 200px;
}
.btn-primary{
    background-color: #41D4F8!important;
    border-color: #41D4F8!important;
}
.form-check-input:checked {
    background-color: #41D4F8!important;
    border-color: #41D4F8!important;
    
}


@media (max-width: 350px){
    input[type="file"]{
        max-width: 150px;
    }
    .subject-group{
        display: block!important;
    }
    .first-col .subject-lebel{
        margin-bottom: 10px;
    }
}
@media (max-width: 250px){
    input[type="file"]{
        max-width: 100px;
    }
}




/** section css **/
