body{
    background:#f1f5f9;
    font-family:Poppins;
}

.card-box{
    background:#fff;
    border-radius:15px;
    padding:20px;
    margin-bottom:20px;
}

.profile-img{
    width:90px;
    height:90px;
    border-radius:50%;
}

.nav-tabs .nav-link{
    background:#e2e8f0;
    border:none;
    margin-right:5px;
}

.nav-tabs .nav-link.active{
    background:#4f46e5;
    color:#fff;
}

/* MODAL */
.modal{
    display:none;
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
}

.modal-content{
    background:#fff;
    width:95%;
    max-width:1200px;
    height:95vh;
    margin:1% auto;
    border-radius:14px;
    position:relative;
    overflow:hidden;
}

.modal-content iframe{
    width:100%;
    height:100%;
    border:none;
}

.close{
    position:absolute;
    right:18px;
    top:10px;
    font-size:32px;
    font-weight:bold;
    cursor:pointer;
    z-index:10;
    background:#fff;
    width:40px;
    height:40px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}