.student-page #student-info-tab {
    border-bottom: 0px;
}

.student-page #student-info-content {
    /* padding-top: 0.5rem; */
}

.student-page #student-info-tab .nav-link {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 0;
}

.student-page #student-info-content table {
    /* border-spacing: 0 0.5rem;
    border-collapse: separate; */
}

.student-page #student-info-content table tr {
    /* border-color: var(--primary-color) !important;
    border-width: 1px !important; */
}

.student-page #student-info-content table thead {
    background-color: var(--primary-hover-color);
    color: white;
    border-radius: var(--border-radius);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.student-info-ul {
    list-style: none;
}

.student-picture {
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.student-picture img{
    width: 120px;
    max-height: 200px;
}
.student-info-ul li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
}

.student-info-value {
    /* font-size: 1rem; */
}

.student-info-icon {
    width: 1.5rem;
    text-align: center;
}

.student-info-icon i {
    font-size: 1.2rem;
    width: 100%;
    display: block;
    opacity: 0.5;
    color: var(--third-color);
}

.student-info-value[data-name='email'] {
    max-width: 80%;
}

.student-page .card .card-title {
    color: var(--primary-color);
}

/* .student-page .student-applications-card .card-body{ */
.student-page #applications-tab-content {
    max-height: 600px;
    overflow-y: auto;
}

.student-page .card {
    margin-bottom: 1rem;
}

.files-list {
    list-style: none;
    margin-top: 0.5rem;
    padding: 0;
}

.file-item {
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-bottom: 0.5rem;
}

.files-list .file-item {
    /* pointer-events: none; */
    cursor: pointer;

}

.file-item .file-button {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .student-info-row {
        justify-content: center;
        gap: 1rem;
    }
}