* {
    /* font-family: "Raleway", sans-serif; */
    font-family: "Inter Tight", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #222222;
}

.wrapper {
    width: 50%;
    margin: 0 auto;
    padding: 0.5em;
    /* border: 1px solid red; */

}

.container {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 0.8em;
    padding: 0.5em 0;
    margin-top: 2%;
    background-color: #fff;
    height: 530px;
}

.navBar {
    padding: 1em 4em;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 0.4em;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
}
.navBar img {
    width: 40%;
}

input {
    padding: 0.8em;
    width: 100%;
    border-bottom: 2px solid rgb(212, 38, 38);
    border-image: linear-gradient(to right, #11998e, #38ef7d);
    border-image-slice: 2;
    font-weight: 700;
    outline: none;
    font-size: 1em;
    color: #282828;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

#searchInput:focus {
    /* padding-bottom: 6px; */
    font-weight: 700;
    border-width: 3px;


    border-radius: 10px;
}

#searchInputVip {
    display: none;
}

.resetBtn{
    border: none;
    
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    background-color: #2b2d2c;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.resetBtn i{
    color: #fff;
}

.inputContainer {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    padding: 0 4em;
    color: #222121;
    margin-bottom: 3%;
    margin: 2% 0 2% 0;
    font-weight: 800;
}

.search-item {
    margin: 0 auto;
    width: 84%;
    padding: 2px 0.5em;

}

.serach-ItemP {
  
    background-color: aliceblue;
    padding: 0.5em;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    border-radius: 10px;
    border: 1px solid #008b8b;
    cursor: pointer;
}

.statusBtn {
    padding: 0.5em 0.8em;
    border-radius: 0.5em;
    border: none;

    background-color: #134f13;
    font-size: 1em;
    color: #fff;
    cursor: pointer;

}

.statusBtn:hover {
    background-color: #295a29;
    transition: 0.2s background-color all;
}

.showResult {
    margin-bottom: 2%;
}

.empDataContianer {
    display: flex;
    padding: 5px;
    width: 83%;
    margin: 0.5% auto;
    color: #000000;
    font-size: 14px;
}


.leftEmpDetails {
    width: 30%;
    border: 2px solid #979797;
    border-right: 1px solid darkcyan;
    display: flex;
    justify-content: left;
    align-items: center;
    border-radius: 0.8em 0 0 0.8em;
    padding: 0.5em;
    font-weight: bold;
    color: #7d7d7d;

}

.rightEmpData {
    width: 70%;
    border: 1px solid #008b8b;
    border-left: 1px solid darkcyan;
    border-radius: 0em 0.8em 0.8em 0;
    padding: 0.5em;
    font-weight: 900;
    display: flex;
    align-items: center;
}


/* Checkbox CSS */
.vipCheckBoxContainer {
    display: flex;
    justify-content: center;
    gap: 5px;
    align-items: center;
    display: none;
}

.vipCheckBoxContainer p {
    font-size: 30px;
    color: #008b8b;
}

.containerCheckbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.containerCheckbox {
    display: block;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.containerCheckbox svg {
    position: relative;
    top: 0;
    left: 0;
    height: 50px;
    width: 50px;
    transition: all 0.3s;
    fill: #666;
}

.containerCheckbox svg:hover {
    transform: scale(1.1);
}

.containerCheckbox input:checked~svg {
    fill: #dcc61f;
}



@media only screen and (max-width: 600px) {
    .wrapper{
        width: 90%;
    }
    .navBar{
        padding: 1em 1em;
    }
    .navBar img{
        width: 50%;
    }

    .inputContainer{
        padding: 0 1.5em;
    }
    .empDataContianer{
        width: 100%;
    }
    input{
        padding: 0.5em 0.2em;
        width: 90%;
        margin: 0 auto; 
    }
    .search-item{
        width: 90%;
    }

    .vipBtnStatus div{
        width: 100% !important;
    }
    .vipBtnStatus p{
        width: 100% !important;
    }
    
}
@media only screen and (min-width: 600px) {
    .wrapper{
        width: 90%;
    }
}
@media only screen and (min-width: 1200px) {
    .wrapper{
        width: 50%;
    }
}

.totalCount{
    color: #11998e;
    border-bottom: 2px solid;
}