/* Graduation Container */
.graduation-container {
    background: #fff url('../../../img/common/bg2.png') no-repeat;
    background-size: 100%;
    background-position: center bottom;
    border: 1px solid #e6f7ff;
    border-radius: 8px;
    padding: 24px 24px 200px 24px;
}

.graduation-title {
    font-size: 24px;
    font-weight: 600;
    color:rgba(30, 64, 126, 1);
    text-align: center;
    margin-bottom: 30px;
}

/* Graduation Info Table */
.graduation-info-wrapper {
    margin-top: 20px;
    overflow-x: auto;
}

.graduation-info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: #fff;
}

.graduation-info-table td {
    padding: 16px;
    border: 1px solid rgba(163, 208, 240, 1);
    vertical-align: middle;
}

.info-label {
    font-weight: 600;
    color: #333;
    width: 120px;
    text-align: right;
    white-space: nowrap;
}

.info-value {
    color: #666;
    /* width: 200px; */
    word-break: break-word;
}

.photo-cell {
    width: 200px;
    text-align: center;
    vertical-align: middle;
    border-left: 2px solid #e8e8e8;
}

.student-photo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.photo-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.student-photo {
    width: 104px;
    max-height: 138px;
    object-fit: cover;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    background: #f5f5f5;
}

/* Status Badge */
.status-badge {
    display: inline-block;
   
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.status-graduated {
    color: rgba(241, 94, 60, 1);
    font-weight: 600;
}

.status-studying {
    color: rgba(17, 106, 215, 1);
    font-weight: 600;
}

/* Table Row Hover */


/* Responsive */
@media (max-width: 1024px) {
    .photo-cell {
        width: 150px;
    }
    
    .student-photo {
        width: 120px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .graduation-container {
        padding: 20px;
    }

    .graduation-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .graduation-info-table {
        font-size: 12px;
    }

    .graduation-info-table td {
        padding: 12px 8px;
    }

    .info-label {
        width: 100px;
        font-size: 12px;
    }

    .info-value {
        width: 150px;
        font-size: 12px;
    }

    .photo-cell {
        width: 120px;
    }

    .student-photo {
        width: 100px;
        height: 130px;
    }

    .photo-label {
        font-size: 12px;
    }
}

