.id-card-holder {
    width: 350px;
    /* padding: 4px; */
    margin: 0 auto;
    /* background-color: #1f1f1f; */
    border-radius: 5px;
    position: relative;
}

    .id-card-holder:after {
        content: '';
        width: 7px;
        display: block;
        background-color: #0a0a0a;
        height: 100px;
        position: absolute;
        top: 105px;
        border-radius: 0 5px 5px 0;
    }

    .id-card-holder:before {
        content: '';
        width: 7px;
        display: block;
        background-color: #0a0a0a;
        height: 100px;
        position: absolute;
        top: 105px;
        left: 344px;
        border-radius: 5px 0 0 5px;
    }

.id-card {
    background-color: #fff;
    /* padding: 10px; */
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 1.5px 0px #b9b9b9;
    border: 2px black solid;
}

    .id-card img {
        margin: 0 auto;
    }

.id-card-header img {
    width: 170px;
    margin-top: 15px;
}

.id-card-photo img {
    width: 110px;
    margin-top: 15px;
}

.id-card > h2 {
    font-size: 20px;
    margin-top: 10px;
}

.id-card > h4 {
    font-size: 12px;
    margin: 5px 0;
}

.id-card > h3 {
    font-size: 13px;
    margin: 5px 0;
    font-weight: 300;
}

.qr-code img {
    width: 50px;
}

.id-card > p {
    font-size: 10px;
    margin: 2px;
}

.id-card-hook {
    background-color: #000;
    width: 70px;
    margin: 0 auto;
    height: 15px;
    border-radius: 5px 5px 0 0;
}

    .id-card-hook:after {
        content: '';
        background-color: #d7d6d3;
        width: 47px;
        height: 6px;
        display: block;
        margin: 0px auto;
        position: relative;
        top: 6px;
        border-radius: 4px;
    }

.id-card-tag-strip {
    width: 45px;
    height: 40px;
    background-color: #0950ef;
    margin: 0 auto;
    border-radius: 5px;
    position: relative;
    top: 9px;
    z-index: 1;
    border: 1px solid #0041ad;
}

    .id-card-tag-strip:after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background-color: #c1c1c1;
        position: relative;
        top: 10px;
    }

.id-card-tag {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-top: 100px solid #0958db;
    margin: -10px auto -30px auto;
}

    .id-card-tag:after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-left: 50px solid transparent;
        border-right: 50px solid transparent;
        border-top: 100px solid #d7d6d3;
        margin: -10px auto -30px auto;
        position: relative;
        top: -130px;
        left: -50px;
    }



/* Define a media query for printing */
@media print {
    body * {
        visibility: hidden;
    }

    /* Display only the content with the 'print-content' class */
    .print-content, .print-content * {
        visibility: visible;
    }

    .print-content {
        position: absolute;
        left: 0;
        top: 0;
    }
}
