/**
 * web3s-hoidap — Facebook-style profile (wpqa/profile/head.php),
 * profile tab loops (theme-parts/loop.php) and dashboard quick actions.
 * Uses the theme's --fb-* design tokens so dark mode adapts automatically.
 */

/* ================= Profile shell ================= */
.fbp {
    background: var(--fb-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 16px;
    overflow: hidden;
}

/* ---------- Cover ---------- */
.fbp-cover {
    position: relative;
    height: 280px;
    background: linear-gradient(120deg, #1877f2 0%, #4aa3ff 45%, #79c1ff 100%);
}
.fbp-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.fbp-cover-default::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 20%, rgba(255,255,255,.25), transparent 55%);
}

/* ---------- Identity row ---------- */
.fbp-headline {
    display: flex;
    align-items: flex-end;
    gap: 18px;
    padding: 0 24px 16px;
    position: relative;
    flex-wrap: wrap;
}
.fbp-avatar {
    margin-top: -84px;
    flex: 0 0 auto;
}
.fbp-avatar img,
.fbp-avatar-img {
    width: 168px;
    height: 168px;
    border-radius: 50%;
    border: 5px solid var(--fb-white);
    box-shadow: var(--shadow);
    object-fit: cover;
    background: var(--fb-divider);
    display: block;
}
.fbp-identity {
    flex: 1 1 300px;
    min-width: 0;
    padding-top: 12px;
}
.fbp-name {
    margin: 0 0 2px;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.fbp-name .verified_user {
    color: var(--fb-blue);
    font-size: 18px;
}
.fbp-tagline {
    margin: 2px 0 6px;
    color: var(--fb-text-2);
    font-size: 15px;
}
.fbp-quickstats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    color: var(--fb-text-2);
    font-size: 14px;
}
.fbp-quickstats a { color: var(--fb-text-2); }
.fbp-quickstats a:hover { color: var(--fb-blue); }
.fbp-quickstats strong { color: var(--fb-text); }

.fbp-socials {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.fbp-social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff;
    background: var(--fbp-brand, var(--fb-blue));
    transition: transform .15s, opacity .15s;
}
.fbp-social:hover { transform: translateY(-2px); opacity: .9; color: #fff; }

.fbp-actions {
    display: flex;
    gap: 10px;
    padding-bottom: 6px;
    flex-wrap: wrap;
    align-items: center;
}
.fbp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    line-height: 1;
}
.fbp-btn-light {
    background: var(--fb-divider);
    color: var(--fb-text);
}
.fbp-btn-light:hover { background: var(--fb-border); color: var(--fb-text); }
.fbp-btn-block { width: 100%; margin-top: 12px; }

/* WPQA follow button (style_4) inside actions */
.fbp-actions .user_follow_4 a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 8px;
    background: var(--fb-blue);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}
.fbp-actions .user_follow_4.user_follow_done a { background: var(--fb-divider); color: var(--fb-text); }

/* ---------- Full-width CTA buttons ---------- */
.fbp-cta {
    display: flex;
    gap: 12px;
    padding: 0 24px 16px;
}
.card .fbp-cta,
.account-main .fbp-cta { padding: 0 0 16px; }
.fbp-cta-btn {
    flex: 1 1 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    color: #fff;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s, opacity .15s;
}
.fbp-cta-btn svg { width: 22px; height: 22px; flex: 0 0 auto; }
.fbp-cta-btn:hover { transform: translateY(-1px); opacity: .95; }
.fbp-cta-ask {
    background: linear-gradient(135deg, var(--fb-blue) 0%, #4aa3ff 100%);
    box-shadow: 0 4px 14px rgba(24, 119, 242, .35);
}
.fbp-cta-post {
    background: linear-gradient(135deg, var(--fb-green) 0%, #58c472 100%);
    box-shadow: 0 4px 14px rgba(49, 162, 76, .35);
}

/* ---------- Tabs ---------- */
.fbp-tabs {
    display: flex;
    gap: 2px;
    padding: 0 16px;
    border-top: 1px solid var(--fb-divider);
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}
.fbp-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 14px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--fb-text-2);
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}
.fbp-tab:hover { background: var(--fb-bg); color: var(--fb-text); border-radius: 8px 8px 0 0; }
.fbp-tab.is-active {
    color: var(--fb-blue);
    border-bottom-color: var(--fb-blue);
}

/* ================= About tab ================= */
.fbp-about {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.fbp-about-side { flex: 0 0 360px; min-width: 0; }
.fbp-about-main { flex: 1 1 auto; min-width: 0; }

.fbp-card { padding: 16px 20px; }
.fbp-card-title {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.fbp-card-more { font-size: 13px; font-weight: 600; }
.fbp-bio { margin: 0 0 12px; color: var(--fb-text); }
.fbp-muted { color: var(--fb-text-2); font-size: 14px; margin: 0; }

.fbp-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 0;
    color: var(--fb-text);
    font-size: 14.5px;
}
.fbp-info-row i {
    width: 20px;
    text-align: center;
    color: var(--fb-text-2);
    font-size: 16px;
    flex: 0 0 auto;
}

.fbp-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.fbp-stat {
    background: var(--fb-bg);
    border-radius: 10px;
    padding: 14px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: var(--fb-text);
}
a.fbp-stat:hover { background: var(--fb-divider); color: var(--fb-text); }
.fbp-stat-num { font-size: 22px; font-weight: 800; color: var(--fb-blue); }
.fbp-stat-label { font-size: 13px; color: var(--fb-text-2); }

.fbp-follower-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.fbp-follower {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--fb-text);
    font-size: 12.5px;
    text-align: center;
}
.fbp-follower img { border-radius: 10px; width: 100%; height: auto; }
.fbp-follower span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

/* ================= Profile tab loops ================= */
.w3-profile-loop .question-list-wrap { margin-top: 0; }
.w3-profile-loop .main-pagination { margin-top: 16px; text-align: center; }
.w3-profile-loop .pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    margin: 0 2px;
    border-radius: 8px;
    background: var(--fb-white);
    color: var(--fb-text);
    font-weight: 600;
    box-shadow: var(--shadow);
}
.w3-profile-loop .pagination .page-numbers.current {
    background: var(--fb-blue);
    color: #fff;
}

/* Alert style reused by loop + search parts (plugin uses .alert-message) */
.alert-message {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--fb-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 16px 20px;
    margin-bottom: 16px;
    color: var(--fb-text-2);
}
.alert-message i { font-size: 20px; color: var(--fb-blue); }
.alert-message p { margin: 0; }
.alert-message.error i { color: #e41e3f; }

/* ================= Search result parts ================= */
.w3-user-search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}
.w3-user-search-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    color: var(--fb-text);
}
.w3-user-search-avatar { border-radius: 50%; }
.w3-user-search-name { font-weight: 700; }
.w3-user-search-count { font-size: 13px; color: var(--fb-text-2); }
.w3-term-search-list { display: flex; flex-direction: column; gap: 4px; }
.w3-term-search-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--fb-text);
}
.w3-term-search-name { font-weight: 600; }
.w3-term-search-count { font-size: 13px; color: var(--fb-text-2); }

/* ================= Dashboard extras ================= */
.account-view-profile {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    margin-top: 6px;
}
.web3s-form-section {
    margin: 18px 0 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--fb-divider);
    font-size: 15px;
    font-weight: 700;
    color: var(--fb-text);
}
.web3s-label-social span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ================= Dark mode tweaks ================= */
body.web3s-dark-mode .fbp-avatar img,
body.web3s-dark-mode .fbp-avatar-img { border-color: var(--fb-white); }
body.web3s-dark-mode .fbp-cover { background: linear-gradient(120deg, #0d3b7a 0%, #14508f 50%, #1a63a8 100%); }

/* ================= Responsive ================= */
@media (max-width: 900px) {
    .fbp-about { flex-direction: column; }
    .fbp-about-side { flex: 1 1 auto; width: 100%; }
}
@media (max-width: 640px) {
    .fbp-cover { height: 170px; }
    .fbp-headline {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 16px 14px;
    }
    .fbp-avatar { margin-top: -64px; }
    .fbp-avatar img,
    .fbp-avatar-img { width: 128px; height: 128px; }
    .fbp-identity { padding-top: 0; }
    .fbp-name { justify-content: center; font-size: 23px; }
    .fbp-quickstats { justify-content: center; }
    .fbp-socials { justify-content: center; }
    .fbp-actions { justify-content: center; width: 100%; }
    .fbp-actions .fbp-btn { flex: 1 1 0; }
    .fbp-cta { flex-direction: column; padding: 0 16px 14px; }
    .fbp-follower-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ================= Edit profile page (/profile/{user}/edit) ================= */

/* Tabs on the edit page (edit-head.php) — match the fbp tab style */
.wrap-tabs {
    background: var(--fb-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 16px;
    overflow: hidden;
}
.wrap-tabs .menu-tabs ul {
    display: flex;
    gap: 2px;
    margin: 0;
    padding: 0 12px;
    list-style: none;
    overflow-x: auto;
}
.wrap-tabs .menu-tabs li a {
    display: inline-block;
    padding: 14px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--fb-text-2);
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}
.wrap-tabs .menu-tabs li a:hover { color: var(--fb-text); background: var(--fb-bg); }
.wrap-tabs .menu-tabs li.active-tab a,
.wrap-tabs .menu-tabs li.current a {
    color: var(--fb-blue);
    border-bottom-color: var(--fb-blue);
}

/* Form shell: each section becomes a card */
.edit-profile-form { max-width: 860px; }
.edit-profile-form .page-section {
    background: var(--fb-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px 24px;
    margin-bottom: 16px;
}
.edit-profile-form .post-title-2 {
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--fb-divider);
    font-size: 17px;
    font-weight: 700;
    color: var(--fb-text);
    display: flex;
    align-items: center;
    gap: 8px;
}
.edit-profile-form .post-title-2 i { color: var(--fb-blue); font-size: 16px; }

/* Field blocks: label on top, icon inside the input on the left */
.edit-profile-form p[class*="_field"] {
    position: relative;
    margin: 0 0 14px;
}
.edit-profile-form p[class*="_field"] > label {
    display: block;
    margin-bottom: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--fb-text-2);
}
.edit-profile-form p[class*="_field"] > label .required { color: #e41e3f; margin-left: 3px; }
.edit-profile-form input[type="text"],
.edit-profile-form input[type="url"],
.edit-profile-form input[type="email"],
.edit-profile-form input[type="tel"],
.edit-profile-form input[type="date"],
.edit-profile-form input[type="number"],
.edit-profile-form input[type="password"],
.edit-profile-form select,
.edit-profile-form textarea {
    width: 100%;
    padding: 10px 14px 10px 40px;
    border: 1px solid var(--fb-border);
    border-radius: 8px;
    background: var(--fb-bg);
    color: var(--fb-text);
    font-size: 14.5px;
    transition: border-color .15s, box-shadow .15s;
}
.edit-profile-form input:focus,
.edit-profile-form select:focus,
.edit-profile-form textarea:focus {
    outline: none;
    border-color: var(--fb-blue);
    box-shadow: 0 0 0 3px rgba(24, 119, 242, .12);
    background: var(--fb-white);
}
.edit-profile-form input[readonly] { opacity: .7; cursor: not-allowed; }
/* WPQA puts the <i> AFTER the input — anchor it over the input's left edge */
.edit-profile-form p[class*="_field"] > i {
    position: absolute;
    left: 13px;
    bottom: 11px;
    color: var(--fb-text-2);
    font-size: 15px;
    pointer-events: none;
}
/* Fields without an icon (selects, checkboxes) drop the extra padding */
.edit-profile-form select { padding-left: 14px; }
.edit-profile-form .styled-select { display: block; }
.edit-profile-form .styled-select select { width: 100%; }

/* Two-column grid for compact sections (socials, personal info) */
.edit-profile-form .wpqa_form_2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 16px;
}
.edit-profile-form .wpqa_form_2 > .clearfix { display: none; }

/* Checkbox rows */
.edit-profile-form p.normal_label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}
.edit-profile-form p.normal_label > label { margin: 0; font-weight: 500; color: var(--fb-text); }
.edit-profile-form .wpqa_checkbox input { width: 16px; height: 16px; accent-color: var(--fb-blue); }

/* Avatar / cover preview block */
.edit-profile-form .author-image {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}
.edit-profile-form .author-image .author-image-span {
    display: inline-flex;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow);
    flex: 0 0 auto;
}
.edit-profile-form .author-image .author-image-span img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    display: block;
}
.edit-profile-form .wpqa-remove-image {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 8px;
    background: var(--fb-divider);
    color: var(--fb-text);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}
.edit-profile-form .wpqa-remove-image:hover { background: var(--fb-border); }
.edit-profile-form input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 2px dashed var(--fb-border);
    border-radius: 8px;
    background: var(--fb-bg);
    font-size: 13.5px;
    color: var(--fb-text-2);
    cursor: pointer;
}
.edit-profile-form input[type="file"]:hover { border-color: var(--fb-blue); }

/* Description editor + textareas */
.edit-profile-form textarea { padding-left: 14px; min-height: 110px; }
.edit-profile-form .the-description { margin-bottom: 14px; }

/* Injected sections (theme) */
.edit-profile-form .web3s-personal-fields { margin-top: 8px; }
.edit-profile-form .web3s-extra-socials { margin-top: 4px; }

/* Submit */
.edit-profile-form .form-submit { margin: 4px 0 0; }
.edit-profile-form .form-submit .submit,
.edit-profile-form input[type="submit"] {
    display: inline-block;
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--fb-blue) 0%, #4aa3ff 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(24, 119, 242, .3);
    transition: transform .15s, opacity .15s;
}
.edit-profile-form input[type="submit"]:hover { transform: translateY(-1px); opacity: .95; }

/* Mobile */
@media (max-width: 640px) {
    .edit-profile-form .wpqa_form_2 { grid-template-columns: 1fr; }
    .edit-profile-form .page-section { padding: 16px; }
}

/* ================= Author profile (author.php) + Edit form ================= */
.fbp-page { padding-top: 16px; padding-bottom: 40px; }

/* Danh sách câu hỏi / trả lời trong profile */
.fbp-qlist, .fbp-alist { list-style: none; margin: 0; padding: 0; }
.fbp-qlist li { padding: 11px 0; border-bottom: 1px solid var(--fb-divider); }
.fbp-qlist li:last-child { border-bottom: none; }
.fbp-qlist li > a { font-weight: 600; color: var(--fb-text); }
.fbp-qlist li > a:hover { color: var(--fb-blue); }
.fbp-qmeta { display: block; font-size: 12.5px; color: var(--fb-text-2); margin-top: 3px; }
.fbp-bio { margin: 0 0 12px; color: var(--fb-text); white-space: pre-line; }

.fbp-alist li {
    position: relative; padding: 14px 16px; margin-bottom: 12px;
    border: 1px solid var(--fb-divider); border-radius: 12px; background: var(--fb-white);
}
.fbp-alist li.fbp-answer-best { border-color: var(--fb-green); background: #f2fbf4; }
.fbp-best-tag {
    display: inline-block; margin-bottom: 6px; padding: 2px 10px; border-radius: 999px;
    background: var(--fb-green); color: #fff; font-size: 12px; font-weight: 700;
}
.fbp-answer-q { display: block; font-weight: 700; color: var(--fb-text); margin-bottom: 4px; }
.fbp-answer-q:hover { color: var(--fb-blue); }
.fbp-answer-excerpt { margin: 4px 0 6px; color: var(--fb-text-2); font-size: 14px; line-height: 1.5; }

.fbp-pagination { margin-top: 16px; display: flex; gap: 6px; flex-wrap: wrap; }
.fbp-pagination .page-numbers {
    display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px;
    padding: 0 10px; border-radius: 8px; background: var(--fb-bg, #f0f2f5); color: var(--fb-text); font-weight: 600;
}
.fbp-pagination .page-numbers.current { background: var(--fb-blue); color: #fff; }

/* ---------- Edit profile form ---------- */
.web3s-edit { padding: 0; overflow: hidden; }
.web3s-edit-ok { background: #e6f7ec; color: #1a7f37; padding: 12px 20px; font-weight: 600; }
.web3s-edit-title { margin: 0; padding: 16px 20px 0; font-size: 19px; font-weight: 800; }
.web3s-edit-form { padding: 0 20px 20px; }

.web3s-edit-media { position: relative; margin: 14px 0 64px; }
.web3s-edit-cover {
    height: 200px; border-radius: 14px;
    background: linear-gradient(120deg, var(--fb-blue) 0%, #4aa3ff 50%, #79c1ff 100%);
    background-size: cover; background-position: center; position: relative;
}
.web3s-edit-avatar {
    position: absolute; left: 24px; bottom: -48px; width: 112px; height: 112px;
}
.web3s-edit-avatar-img {
    width: 112px; height: 112px; border-radius: 50%; border: 4px solid var(--fb-white);
    object-fit: cover; box-shadow: var(--shadow); background: var(--fb-divider);
}
.web3s-upload-btn {
    position: absolute; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
    background: rgba(0,0,0,.6); color: #fff; font-size: 13px; font-weight: 600;
    padding: 7px 12px; border-radius: 8px; top: 12px; right: 12px;
}
.web3s-upload-btn:hover { background: rgba(0,0,0,.75); }
.web3s-upload-avatar {
    top: auto; right: 4px; bottom: 4px; padding: 7px; border-radius: 50%;
}
.web3s-remove-chk {
    position: absolute; left: 12px; bottom: 12px; background: rgba(0,0,0,.55); color: #fff;
    font-size: 12px; padding: 4px 9px; border-radius: 6px; display: inline-flex; gap: 5px; align-items: center; cursor: pointer;
}
.web3s-remove-avatar { position: static; display: inline-flex; margin: 56px 0 0 148px; background: none; color: var(--fb-text-2); }

.web3s-form-section {
    margin: 18px 0 10px; padding-bottom: 8px; border-bottom: 1px solid var(--fb-divider);
    font-size: 15px; font-weight: 800; color: var(--fb-text);
}
.web3s-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; }
.web3s-label { display: flex; flex-direction: column; gap: 5px; font-size: 13.5px; font-weight: 600; color: var(--fb-text-2); }
.web3s-label-full { grid-column: 1 / -1; }
.web3s-label input, .web3s-label select, .web3s-label textarea {
    border: 1px solid var(--fb-border); border-radius: 9px; padding: 9px 12px; font-size: 14.5px;
    background: var(--fb-white); color: var(--fb-text); font-weight: 400; outline: none; transition: border-color .15s, box-shadow .15s;
}
.web3s-label input:focus, .web3s-label select:focus, .web3s-label textarea:focus {
    border-color: var(--fb-blue); box-shadow: 0 0 0 3px rgba(24,119,242,.12);
}
.web3s-label-social span { display: inline-flex; align-items: center; gap: 7px; }
.web3s-edit-actions { display: flex; gap: 10px; margin-top: 20px; align-items: center; flex-wrap: wrap; }
.btn-light { background: var(--fb-divider); color: var(--fb-text); padding: 10px 18px; border-radius: 9px; font-weight: 600; }
.btn-light:hover { background: var(--fb-border); color: var(--fb-text); }

/* Dark mode */
body.web3s-dark-mode .fbp-alist li { background: #242526; border-color: #3a3b3c; }
body.web3s-dark-mode .fbp-alist li.fbp-answer-best { background: #16311f; border-color: var(--fb-green); }
body.web3s-dark-mode .fbp-pagination .page-numbers { background: #3a3b3c; }
body.web3s-dark-mode .web3s-label input,
body.web3s-dark-mode .web3s-label select,
body.web3s-dark-mode .web3s-label textarea { background: #3a3b3c; color: var(--fb-text); border-color: #4a4b4c; }
body.web3s-dark-mode .web3s-edit-ok { background: #16311f; color: #6ee7a0; }

/* Responsive */
@media (max-width: 720px) {
    .web3s-grid-2 { grid-template-columns: 1fr; }
    .web3s-edit-cover { height: 150px; }
    .web3s-remove-avatar { margin-left: 130px; }
}
