/* ===== My Profile (Consultant Self-Edit) ===== */

.my-profile-wrap {
    background: #10222C;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px 80px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.my-profile-wrap > p:first-child a {
    color: #4FB3A0;
    font-size: 13px;
    text-decoration: none;
}
.my-profile-wrap > p:first-child a:hover { text-decoration: underline; }

.my-profile-wrap h1 {
    color: #FFFFFF;
    font-size: 32px;
    margin: 16px 0 10px;
}

.my-profile-wrap > p.subtitle,
.my-profile-wrap > p:nth-of-type(2) {
    color: #A9C2CE;
    font-size: 15px;
    margin-bottom: 24px;
}

/* Saved / submitted confirmation message */
.my-profile-wrap .updated,
.my-profile-wrap .updated p,
.my-profile-wrap .acf-notice.-success {
    background: #1B3A4B !important;
    color: #4FB3A0 !important;
    border: 1px solid #4FB3A0 !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
}

/* ACF form container (kept white — form inputs read best on light background) */
.my-profile-wrap .acf-form {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 30px 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.my-profile-wrap .acf-field {
    margin-bottom: 20px;
}

.my-profile-wrap .acf-label label {
    color: #1B3A4B;
    font-weight: 600;
    font-size: 14px;
}

.my-profile-wrap input[type="text"],
.my-profile-wrap input[type="url"],
.my-profile-wrap input[type="number"],
.my-profile-wrap textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #D3E5E2;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.my-profile-wrap .acf-form-submit {
    margin-top: 20px;
}

.my-profile-wrap input[type="submit"] {
    background: #1B3A4B;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}
.my-profile-wrap input[type="submit"]:hover {
    background: #2E8B7A;
}

.ll-pending-banner {
    background: #1B3A4B;
    color: #E6B43C;
    border: 1px solid #E6B43C;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 13px;
    margin-bottom: 20px;
}

.my-profile-submit-review-btn {
    display: block;
    width: 100%;
    max-width: 640px;
    margin: 16px auto 0;
    background: #1B3A4B;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}
.my-profile-submit-review-btn:hover { background: #2E8B7A; }

.my-profile-submit-error {
    max-width: 640px;
    margin: 16px auto 0;
    background: #4a1f1f;
    border: 1px solid #ff6b6b;
    color: #ffb3b3;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

/* Highlighted missing fields on failed submit attempt */
.acf-field.ll-field-error {
    background: rgba(200,80,80,0.08) !important;
    border-left: 4px solid #C85050 !important;
    padding-left: 16px !important;
    border-radius: 4px;
}
.acf-field.ll-field-error .acf-label label {
    color: #C85050 !important;
}

.ll-rejection-banner {
    background: #4a1f1f;
    color: #ffb3b3;
    border: 1px solid #ff6b6b;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}