body{
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

#loginContainer{
    height: 100vh;
    background-image: url("../images/bg_2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* Overlay */
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: overlay;
}

#appContainer{
    width: 100%;
    float: left;
}

#appNav{
    width: 20%;
    float: left;
    height: 100vh;
}

#appMenu{
    width: 76%;
    float: left;
    margin-left: 2%;
    margin-right: 2%;
    margin-top: 1%;
}

/* ID Styling  */
/* @media print styles (uncomment if needed) */
@media print {
    .id-body, .id-body-back{
        margin: 0;
        padding: 0;
        background: none;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .id-card, .id-body-back{
        box-shadow: none;
        border: 1px solid #000;
    }

    button {
        display: none;
    }
}

.id-body, .id-body-back{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

.id-card, .id-card-back{
    width: 300px;
    height: 495px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-family: Arial, sans-serif;
    overflow: hidden;
    position: relative;
}

.header {
    background: #3f3f99;
    color: yellow;
    padding-top: 5px;
    font-size: 40px;
    letter-spacing: 10px;
    font-weight: 900;
}

.sub-header {
    background: #3f3f99;
    color: white;
    font-size: 14px;
    padding-bottom: 10px;
    font-weight: 500;
}
.staff {
    color: red;
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
    margin-right: 20px;
    text-align: right;
}
.logo {
    width: 85px;
    position: absolute;
    left: 20px;
    top: 110px;
}

.profile {
    width: 200px;
    height: 200px;
    margin: 5px auto;
}

.details {
    font-size: 14px;
    color: #333;
    /* margin-bottom: 1px; */
}

.name {
    font-weight: bold;
    font-size: 21px;
    margin-top: 10px;
}

.position {
    color: red;
    font-weight: bold;
    font-size: 16px;
}

.emp-no {
    font-size: 15px;
    /* margin-top: 1px; */
}

.footer{
    position: absolute;
    bottom: 0;
    left: 0;
    top: -30px;
    text-align: left;
}

.footer .green {
    background: green;
    color: green;
    width: 25%;
    border-top-right-radius: 10px;
    font-size: 12px;
}

.footer .yellow {
    background: yellow;
    color: yellow;
    width: 50%;
    border-top-right-radius: 10px;
    font-size: 12px;
}

.footer .blue {
    background: #3f3f99;
    color: white;
    width: 70%;
    padding-left: 4px;
    font-size: 12px;
    height: 20px;
    border-top-right-radius: 10px;
    text-align: center;
}

.green-bg{
    background: green;
    color: green;
    width: 100%;
    height: 8px;
}

.yellow-bg{
    background: yellow;
    color: yellow;
    width: 100%;
    height: 8px;
}

.blue-bg{
    background: #3f3f99;
    color: #3f3f99;
    width: 100%;
    height: 8px;
}