/* ==============================
   EDUPRO - HỒ SƠ CÁ NHÂN
============================== */
.edupro-profile-page {
    width: 100%;
}

.edupro-profile-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.edupro-profile-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eef2ff;
    color: #4f46e5;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 10px;
}

.edupro-profile-head h1 {
    margin: 0 0 8px;
    color: #061733;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.18;
}

.edupro-profile-head p {
    margin: 0;
    color: #526783;
    font-size: 15px;
    line-height: 1.65;
}

.edupro-profile-card {
    background: #fff;
    border: 1px solid #d8e1ec;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .07);
    max-width: 920px;
}

.edupro-profile-avatar-upload {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 20px;
    border: 1px solid #e4ebf5;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8fbff, #fff);
    margin-bottom: 24px;
}

.edupro-profile-avatar-preview {
    width: 104px;
    height: 104px;
    min-width: 104px;
    border-radius: 26px;
    background: linear-gradient(135deg, #e9e7ff, #f7f5ff);
    color: #5b5cf6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 900;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(91, 92, 246, .12);
}

.edupro-profile-avatar-preview img,
.edupro-teacher-user-avatar img,
.edupro-student-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.edupro-teacher-user-avatar img,
.edupro-student-avatar img {
    border-radius: inherit;
}

.edupro-profile-avatar-control input[type="file"] {
    display: none;
}

.edupro-profile-avatar-choose-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #5b5cf6, #7c3aed);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(91, 92, 246, .2);
}

.edupro-profile-avatar-control p {
    margin: 10px 0 0;
    color: #64748b;
    font-size: 13px;
}

.edupro-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.edupro-profile-field label {
    display: block;
    margin-bottom: 9px;
    color: #17365d;
    font-size: 14px;
    font-weight: 850;
}

.edupro-profile-field input {
    width: 100%;
    height: 52px;
    border: 1px solid #c9d7e7;
    border-radius: 14px;
    padding: 0 15px;
    background: #fff;
    color: #061733;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    transition: .2s ease;
}

.edupro-profile-field input:focus {
    border-color: #6d5dfc;
    box-shadow: 0 0 0 4px rgba(109, 93, 252, .13);
}

.edupro-profile-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

.edupro-profile-submit {
    min-height: 48px;
    padding: 0 26px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #5b5cf6, #7c3aed);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(91, 92, 246, .25);
}

.edupro-profile-submit:disabled {
    opacity: .65;
    cursor: wait;
}

@media (max-width: 767px) {
    .edupro-profile-card {
        padding: 20px;
        border-radius: 20px;
    }

    .edupro-profile-avatar-upload {
        flex-direction: column;
        align-items: flex-start;
    }

    .edupro-profile-grid {
        grid-template-columns: 1fr;
    }

    .edupro-profile-head h1 {
        font-size: 26px;
    }
}
