*{
    margin: 0px;
    padding: 0px;
}
body{
    overflow-x: hidden;
}
.nav-wrapper{
    width: 100%;
    box-shadow: 3px 3px 5px 6px #ccc;
    position: sticky;
    top: 0;
    padding: 3px;
    background-color: white;
    z-index: 1;
}
.nav-list{
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}
.nav-list li{
    display: inline-block;
    padding: 15px;
}
.nav-list li a{
    text-decoration: none;
    color: #1B91DB;
    padding: 15px 40px;
    border-radius: 15px;
    font-size: 1.3rem;
    font-family: monospace;
    font-weight: 600;
}
.nav-list li a:hover{
    background-color: #1B91DB;
    color: white;
}

.employees{
    margin-left: 1.5%;
    margin-top: 20px;
}
.employee-list{
    list-style: none;
    padding-bottom: 10px;
    display: inline-flex;
    max-width: 100%;
    flex-wrap: wrap;
    background-color: #edeeef;
    border-style: hidden;
    border-radius: 10px;
}
.employee-card{
    display: flex;
    flex-wrap: wrap;
    background-color: white;
    border-style: hidden;
    border-radius: 10px;
    max-width: 100%;
    margin: 20px;
    padding: 15px;
    box-shadow: 3px 3px 5px 6px #ccc;
}
.close-btn{
    float: right;
    cursor: pointer;
}
.user-img{
    float: left;
    border: 2px solid #1B91DB;
    border-radius: 100px;
}
.employment-details{
    display: block;
    float: right;
    margin-left: 20px;

}
.interviews{
    margin: 1.5%;
    width: 25%;
    list-style: none;
    background-color: #edeeef;
    border-style: hidden;
    border-radius: 10px;
    padding: 15px;
}
.list-item{
    background-color: white;
    margin: 20px;
    padding: 10px;
    box-shadow: 3px 3px 5px 6px #ccc;
    border-style: hidden;
    border-radius: 5px;
}
.accept-btn{
    width: auto;
    background-color: #36bc65;
    border: none;
    color: white;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    margin: 1% 2% 0% 0%;
}
.reject-btn{
    width: auto;
    background-color: red;
    border-style: none;
    color: white;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    margin: 1% 2% 0% 0%;
}
#employee-model{
    text-align: center;
    width: 30%;
    border-style: solid;
    border-width: 2px;
    border-radius: 10px;
    position: absolute;
    top: 40%;
    left: 40%;
    background-color: white;
}
.model-header{
    border-radius: 10px 10px 0px 0px;
    background-color: #1B91DB;
}
.model-header-content{
    font-size: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: bold;
}
#confirm-btn{
    margin: 15px;
    width: auto;
    border: none;
    color: white;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    background-color: #36bc65;
}
#cancel-btn{
    margin: 15px;
    width: auto;
    border: none;
    color: black;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    background-color: #ccc;
}
.name-format{
    color: #1B91DB;
    font-weight: bold;
}
input{
    width: 50%;
    padding: 12px 20px;
    margin: 8px 0px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
#interview-model{
    text-align: center;
    width: 30%;
    border-style: solid;
    border-width: 2px;
    position: absolute;
    border-radius: 10px;
    top: 40%;
    left: 40%;
    background-color: white;
}
#confirmInt-btn{
    width: auto;
    border: none;
    color: white;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    background-color: #36bc65;
    margin: 30px;
}
#cancelInt-btn{
    width: auto;
    border: none;
    color: black;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    margin: 30px;
    background-color: #ccc;
}
.add-buttons{
    width: 100%;
    height: 10vh;
}
.btn{
    float: right;
    background-color: #1B91DB;
    width: 8%;
    border: none;
    color: white;
    padding: 12px 16px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    margin-right: 2%;
}
.footer-container{
    width: 100%;
    background-color: #333;
    margin-top: 10px;
}
.footer-list{
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.footer-list li{
    display: inline-block;
    color: white;
    padding: 15px;
}
.footer-list li:hover{
    text-decoration: underline white;
}
