.docs-table {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.doc-row {
    background: #fff;
    padding: 26px 28px;
    border-radius: 18px;
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border: 1px solid rgb(3 91 166 / .08);
    box-shadow: 0 12px 30px rgb(0 0 0 / .05);
    transition: .35s ease;
    position: relative;
    margin-bottom:20px;
}

.doc-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    border-radius: 18px 0 0 18px;
    background: #f38020;
    opacity: 0;
    transition: .3s;
}

.doc-info {
    display: flex;
    align-items: center;
    gap: 18px;
}

.doc-info i {
    font-size: 30px;
    color: #f38020;
    background: rgb(234 93 4 / .12);
    padding: 14px;
    border-radius: 14px;
    transition: .3s;
}

.doc-info h5 {
    margin: 0;
    color: #065ba7;
    font-weight: 600;
    font-size: 1.15rem;
}

.btn-student {
    color: #fff !important;
    background: #035ba6 !important;
    border: 1px solid #ffffff !important;
    border: none;
    padding: 12px 26px;
    font-weight: 600;
    border-radius: 40px;
    letter-spacing: .3px;
    box-shadow: 0 6px 18px rgb(3 91 166 / .2);
    transition: .35s;
}

