/* ============================================================
 * 배때지 V2 · STYLE 고객 요청 스타일
 *
 *   기존 v2-style.css 와 충돌하지 않도록 전부 새 클래스만 쓴다.
 *     .v2st-head--req / .v2st-head__* / .v2st-reqbtn / .v2st-chip--req  (목록 페이지 추가분)
 *     .v2sr-*                                                          (요청 페이지 전용)
 *   기존 .v2st-head, .v2st-chip, .v2st-btn 규칙은 건드리지 않는다.
 *
 *   반응형: 모바일 우선 → 768px(태블릿) → 1200px(PC). v2-style.css 와 동일 기준.
 * ========================================================== */

/* ---------------- 목록 헤더 + 요청 버튼 ---------------- */

/* 모바일: 제목 아래에 버튼이 full-width 로 깔린다 */
.v2st-head--req {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
}
.v2st-head__txt { min-width: 0; }
.v2st-head__sub {
    margin: 6px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: #6b6f78;
    font-weight: 600;
}

.v2st-reqbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 13px 20px;
    border-radius: 999px;
    border: 1px solid #16161a;
    background: #16161a;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -.01em;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: opacity .15s ease, transform .15s ease;
}
.v2st-reqbtn:hover  { opacity: .86; }
.v2st-reqbtn:active { transform: scale(.985); }
.v2st-reqbtn span   { font-size: 17px; line-height: 1; font-weight: 700; }

/* 태블릿 이상: 제목 오른쪽으로 붙고 버튼은 내용 너비 */
@media (min-width: 768px) {
    .v2st-head--req {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 20px;
    }
    .v2st-reqbtn {
        width: auto;
        flex: 0 0 auto;
        padding: 12px 24px;
        margin-bottom: 2px;
    }
    .v2st-head__sub { font-size: 13.5px; }
}
@media (min-width: 1200px) {
    .v2st-reqbtn    { padding: 13px 28px; font-size: 15px; }
    .v2st-head__sub { font-size: 14px; }
}

/* 고객 요청 스타일 탭 — 활성 전에는 살짝 구분되게 */
.v2st-chip--req { border-color: #cfd4dc; }
.v2st-chip--req.on { background: #16161a; border-color: #16161a; color: #fff; }

@media (prefers-reduced-motion: reduce) {
    .v2st-reqbtn { transition: none; }
    .v2st-reqbtn:active { transform: none; }
}


/* ============================================================
 *  요청 페이지 /v2/style/request.php
 * ========================================================== */

.v2sr-page {
    --sr-pad: 16px;
    padding: 0 var(--sr-pad) 120px;
    max-width: 1100px;
    margin: 0 auto;
}
@media (min-width: 768px)  { .v2sr-page { --sr-pad: 20px; } }
@media (min-width: 1200px) { .v2sr-page { --sr-pad: 24px; } }

.v2sr-head { padding: 18px 0 14px; }
.v2sr-head h1 {
    margin: 0;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -.02em;
    color: #16161a;
}
.v2sr-head p { margin: 6px 0 0; font-size: 13px; line-height: 1.55; color: #6b6f78; }
@media (min-width: 768px) { .v2sr-head h1 { font-size: 26px; } }

/* 안내 박스 — "무엇을 할 수 있는지" 를 먼저 못박는다 */
.v2sr-note {
    border: 1px solid #e2e5ea;
    background: #f8f9fb;
    border-radius: 14px;
    padding: 14px 16px;
    margin: 0 0 18px;
}
.v2sr-note ul { margin: 0; padding-left: 18px; }
.v2sr-note li { font-size: 12.5px; line-height: 1.7; color: #4a4d55; }
.v2sr-note li b { color: #16161a; }

/* 2단 레이아웃: 모바일 세로 / PC 검색 + 선택 나란히 */
.v2sr-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 1200px) {
    .v2sr-grid { grid-template-columns: 1fr 380px; gap: 24px; align-items: start; }
    .v2sr-picked-wrap { position: sticky; top: 16px; }
}

.v2sr-card {
    border: 1px solid #e6e8ec;
    border-radius: 16px;
    background: #fff;
    padding: 16px;
}
.v2sr-card > h2 {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 800;
    color: #16161a;
    display: flex;
    align-items: center;
    gap: 8px;
}
.v2sr-card > h2 small { font-size: 12px; font-weight: 700; color: #8b8f98; }

/* ---------------- 검색 ---------------- */

.v2sr-search { display: flex; gap: 8px; }
.v2sr-search input {
    flex: 1 1 auto;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid #d8dbe0;
    border-radius: 10px;
    font-size: 14px;
    color: #16161a;
    background: #fff;
    -webkit-appearance: none;
}
.v2sr-search input:focus { outline: 2px solid #16161a; outline-offset: -1px; }
.v2sr-search button {
    flex: 0 0 auto;
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid #16161a;
    background: #16161a;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}
.v2sr-search button:disabled { opacity: .5; cursor: default; }

.v2sr-msg { margin: 10px 0 0; font-size: 12.5px; color: #8b8f98; min-height: 18px; }
.v2sr-msg.is-err { color: #c0392b; font-weight: 700; }

/* 검색 결과 — 모바일 1열, 태블릿 2열, PC 2열 */
.v2sr-results {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
    max-height: 560px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
@media (min-width: 600px)  { .v2sr-results { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1200px) { .v2sr-results { grid-template-columns: 1fr; max-height: 620px; } }

.v2sr-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 9px;
    border: 1px solid #eff1f4;
    border-radius: 12px;
    background: #fff;
}
.v2sr-item__img {
    width: 64px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    background: #f2f3f5;
    display: block;
}
.v2sr-item__body { min-width: 0; }
.v2sr-item__brand {
    font-size: 11px;
    font-weight: 800;
    color: #8b8f98;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.v2sr-item__title {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    color: #16161a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.v2sr-item__no { margin: 3px 0 0; font-size: 11.5px; color: #8b8f98; }
.v2sr-item__add {
    flex: 0 0 auto;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #16161a;
    background: #fff;
    color: #16161a;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    cursor: pointer;
}
.v2sr-item__add:hover { background: #16161a; color: #fff; }
.v2sr-item__add:disabled {
    border-color: #d8dbe0; background: #f2f3f5; color: #a8acb4; cursor: default;
}

.v2sr-more { margin-top: 12px; text-align: center; }
.v2sr-more button {
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid #d8dbe0;
    background: #fff;
    font-size: 13px;
    font-weight: 800;
    color: #16161a;
    cursor: pointer;
}

/* ---------------- 선택한 상품 ---------------- */

.v2sr-count { font-size: 12px; font-weight: 800; color: #8b8f98; }
.v2sr-count.is-ok { color: #1c7a3f; }

.v2sr-picked { display: flex; flex-direction: column; gap: 8px; margin: 0 0 14px; }
.v2sr-picked:empty { display: none; }

.v2sr-picked .v2sr-item { grid-template-columns: 52px 1fr auto; background: #fafbfc; }
.v2sr-picked .v2sr-item__img { width: 52px; height: 66px; }
.v2sr-picked__del {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 1px solid #e2e5ea;
    background: #fff;
    color: #8b8f98;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
}
.v2sr-picked__del:hover { border-color: #c0392b; color: #c0392b; }

.v2sr-empty {
    padding: 26px 12px;
    text-align: center;
    font-size: 13px;
    color: #a8acb4;
    border: 1px dashed #dfe3e8;
    border-radius: 12px;
    margin-bottom: 14px;
}

/* 성별 선택 — 자유입력이 아니라 고정 선택지 */
.v2sr-gender { display: flex; gap: 8px; margin: 0 0 14px; flex-wrap: wrap; }
.v2sr-gender input { position: absolute; opacity: 0; pointer-events: none; }
.v2sr-gender label {
    flex: 1 1 0;
    min-width: 84px;
    text-align: center;
    padding: 10px 12px;
    border: 1px solid #e2e5ea;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #4a4d55;
    background: #fff;
    cursor: pointer;
}
.v2sr-gender input:checked + label { background: #16161a; border-color: #16161a; color: #fff; }
.v2sr-gender input:focus-visible + label { outline: 2px solid #16161a; outline-offset: 2px; }

.v2sr-submit {
    width: 100%;
    padding: 15px 20px;
    border-radius: 999px;
    border: 1px solid #16161a;
    background: #16161a;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}
.v2sr-submit:disabled { border-color: #d8dbe0; background: #e6e8ec; color: #a8acb4; cursor: default; }

/* ---------------- 내 스타일 요청 (마이페이지) ---------------- */

.v2sr-my { display: flex; flex-direction: column; gap: 12px; }

.v2sr-req {
    border: 1px solid #e6e8ec;
    border-radius: 14px;
    background: #fff;
    padding: 14px;
}
.v2sr-req__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}
.v2sr-req__no { font-size: 12.5px; font-weight: 800; color: #8b8f98; }
.v2sr-req__date { font-size: 12px; color: #a8acb4; }

.v2sr-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 800;
    white-space: nowrap;
}
.v2sr-badge--wait   { background: #eef1f6; color: #4a4d55; }
.v2sr-badge--making { background: #fff4e5; color: #a8620d; }
.v2sr-badge--done   { background: #e6f6ec; color: #1c7a3f; }
.v2sr-badge--reject { background: #fdecea; color: #c0392b; }

.v2sr-req__thumbs { display: flex; gap: 6px; flex-wrap: wrap; }
.v2sr-req__thumbs img {
    width: 54px; height: 68px;
    object-fit: cover;
    border-radius: 8px;
    background: #f2f3f5;
}
.v2sr-req__memo {
    margin: 10px 0 0;
    padding: 9px 11px;
    background: #fafbfc;
    border-radius: 9px;
    font-size: 12.5px;
    line-height: 1.6;
    color: #4a4d55;
}
.v2sr-req__go {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 11px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #16161a;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

@media (min-width: 768px) {
    .v2sr-req__thumbs img { width: 62px; height: 78px; }
}


/* ============================================================
 *  내가 요청한 스타일 / 내 요청함  (.v2srq-*)
 *
 *  전용 prefix — 기존 .v2st-* / .v2sr-* / .bt-my-* / .bi-* 와 겹치지 않는다.
 *  모바일 우선 → 768px(태블릿) → 1200px(PC).
 *  터치 타깃은 최소 44px 를 지킨다.
 * ========================================================== */

/* 이 컴포넌트들이 쓰이는 페이지에는 전역 border-box 리셋이 없을 수 있다.
   (마이페이지 > 내 요청함 은 shop-final.css 만 로드한다)
   패딩이 폭에 더해져 태블릿에서 가로 넘침이 났다 → 우리 영역만 스코프해서 리셋한다. */
.v2srq-shell,   .v2srq-shell *,   .v2srq-shell *::before,   .v2srq-shell *::after,
.v2srq-section, .v2srq-section *, .v2srq-section *::before, .v2srq-section *::after,
.v2srq-mysec,   .v2srq-mysec *,   .v2srq-mysec *::before,   .v2srq-mysec *::after {
    box-sizing: border-box;
}

/* ---------------- 페이지 셸 (마이페이지 > 내 요청함) ----------------
   예전엔 body-info 의 .bi-shell/.bi-appbar 마크업을 빌려 썼는데 그 CSS 를
   로드하지 않아 앱바 문구가 raw 텍스트로 최상단에 노출됐다. 자급자족 셸로 대체. */
.v2srq-shell {
    min-height: 100vh;
    background: #f5f6f8;
    padding-bottom: calc(90px + env(safe-area-inset-bottom, 0px));
}

.v2srq-appbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 10px 0 0;
    background: #fff;
    border-bottom: 1px solid #e6e8ec;
}
.v2srq-appbar h1 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -.01em;
    color: #16161a;
    text-align: center;
}
.v2srq-appbar__back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;                   /* 터치 타깃 44px */
    font-size: 26px;
    line-height: 1;
    color: #16161a;
    text-decoration: none;
}
.v2srq-appbar__new {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: #16161a;
    color: #fff;
    font-size: 12.5px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.v2srq-main {
    max-width: 900px;               /* PC 에서 지나치게 넓어지지 않게 */
    margin: 0 auto;
    padding: 14px 16px 40px;
}
@media (min-width: 768px)  { .v2srq-main { padding: 18px 20px 48px; } }
@media (min-width: 1200px) { .v2srq-main { padding: 22px 24px 56px; } }

/* ---------------- 안내 문구 ---------------- */

.v2srq-flash {
    margin: 0 0 14px;
    padding: 12px 14px;
    border: 1px solid #bfe6cc;
    background: #f2fbf5;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 700;
    color: #1c7a3f;
}
.v2srq-flash--warn { border-color: #f3d4a0; background: #fff8ec; color: #a8620d; }

.v2srq-empty {
    margin: 0 0 16px;
    padding: 34px 16px;
    text-align: center;
    border: 1px dashed #dfe3e8;
    border-radius: 14px;
    background: #fff;
    font-size: 13.5px;
    color: #8b8f98;
}

/* 오늘 남은 요청 건수 */
.v2srq-quota {
    margin: 0 0 16px;
    padding: 11px 14px;
    border-radius: 10px;
    background: #f2f4f7;
    font-size: 13px;
    font-weight: 700;
    color: #4a4d55;
}
.v2srq-quota.is-out { background: #fdecea; color: #c0392b; }

/* 성공/오류 토스트 — 페이지당 하나만 쓴다 */
.v2srq-toast {
    margin: 0 0 14px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #bfe6cc;
    background: #f2fbf5;
    color: #1c7a3f;
    font-size: 13.5px;
    font-weight: 700;
}
.v2srq-toast.is-err { border-color: #f5c6c0; background: #fdecea; color: #c0392b; }

/* ---------------- 상태 요약 ---------------- */

.v2srq-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    margin: 0 0 16px;
    padding: 12px 8px;
    background: #fff;
    border: 1px solid #e6e8ec;
    border-radius: 14px;
}
.v2srq-stat { text-align: center; min-width: 0; }
.v2srq-stat b {
    display: block;
    font-size: 18px;
    font-weight: 900;
    color: #16161a;
    line-height: 1.2;
}
.v2srq-stat span {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    font-weight: 700;
    color: #8b8f98;
    white-space: nowrap;
}
@media (min-width: 768px) {
    .v2srq-stat b { font-size: 22px; }
    .v2srq-stat span { font-size: 12px; }
}

/* ---------------- 요청 카드 ---------------- */

.v2srq-section { margin-top: 28px; }
.v2srq-section__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin: 0 0 12px;
}
.v2srq-section__head h2 {
    margin: 0;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: -.02em;
    color: #16161a;
}
.v2srq-total { font-size: 12.5px; font-weight: 800; color: #8b8f98; }

.v2srq-list { display: grid; grid-template-columns: 1fr; gap: 12px; }
/* 태블릿 2열 · PC 도 2열 유지 (한 카드가 너무 넓어지면 읽기 나빠진다) */
@media (min-width: 768px)  { .v2srq-list { grid-template-columns: 1fr 1fr; gap: 14px; } }

.v2srq-card {
    border: 1px solid #e6e8ec;
    border-radius: 16px;
    background: #fff;
    padding: 14px;
    min-width: 0;                    /* grid 안에서 넘침 방지 */
}
.v2srq-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}
.v2srq-card__id { min-width: 0; }
.v2srq-card__id b {
    display: block;
    font-size: 13.5px;
    font-weight: 800;
    color: #16161a;
}
.v2srq-card__id time {
    display: block;
    margin-top: 2px;
    font-size: 11.5px;
    color: #a8acb4;
}

.v2srq-badge {
    flex: 0 0 auto;
    display: inline-block;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 800;
    white-space: nowrap;
}
.v2srq-badge--wait    { background: #eef1f6; color: #4a4d55; }
.v2srq-badge--working { background: #fff4e5; color: #a8620d; }
.v2srq-badge--done    { background: #e6f6ec; color: #1c7a3f; }
.v2srq-badge--reject  { background: #fdecea; color: #c0392b; }

.v2srq-card__meta { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.v2srq-chip {
    padding: 4px 10px;
    border-radius: 999px;
    background: #f2f4f7;
    font-size: 11.5px;
    font-weight: 700;
    color: #4a4d55;
    white-space: nowrap;
}

/* 상품 썸네일 — 모바일에서 가로 스크롤 */
.v2srq-items {
    display: flex;
    gap: 8px;
    margin: 0 0 10px;
    padding: 0 0 4px;
    list-style: none;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}
.v2srq-items::-webkit-scrollbar { display: none; }

.v2srq-item {
    flex: 0 0 auto;
    width: 82px;
    min-width: 0;
}
.v2srq-item.is-dead { opacity: .5; }
.v2srq-item img,
.v2srq-item__ph {
    display: block;
    width: 82px;
    height: 100px;
    object-fit: cover;
    border-radius: 9px;
    background: #f2f3f5;
}
.v2srq-item__t {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 5px;
    font-size: 11.5px;
    font-weight: 700;
    line-height: 1.35;
    color: #16161a;
    word-break: break-all;
}
.v2srq-item__n {
    display: block;
    margin-top: 2px;
    font-size: 10.5px;
    color: #a8acb4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.v2srq-note {
    margin: 0 0 10px;
    padding: 10px 12px;
    background: #f8f9fb;
    border-radius: 10px;
    font-size: 12.5px;
    line-height: 1.6;
    color: #4a4d55;
    word-break: break-word;
}

.v2srq-card__foot { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.v2srq-pending { font-size: 12px; font-weight: 700; color: #a8620d; }

/* 버튼 — 터치 타깃 44px */
.v2srq-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid #d8dbe0;
    background: #fff;
    color: #16161a;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}
.v2srq-btn:hover { background: #f5f7fa; }
.v2srq-btn--primary { background: #16161a; border-color: #16161a; color: #fff; }
.v2srq-btn--primary:hover { background: #000; }
.v2srq-btn--go { background: #16161a; border-color: #16161a; color: #fff; }
.v2srq-btn--go:hover { background: #000; }

.v2srq-more { margin: 18px 0 0; text-align: center; }

.v2srq-pager { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin: 20px 0 0; }
.v2srq-pager a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid #d8dbe0;
    border-radius: 10px;
    text-decoration: none;
    color: #4a4d55;
    font-size: 13px;
    font-weight: 700;
    background: #fff;
}
.v2srq-pager a.on { background: #16161a; border-color: #16161a; color: #fff; }

/* ---------------- 마이페이지 메인 요약 박스 ---------------- */

.v2srq-mybox {
    border: 1px solid #e6e8ec;
    border-radius: 14px;
    background: #fff;
    padding: 14px;
}
.v2srq-myempty { margin: 0 0 12px; font-size: 13.5px; color: #8b8f98; text-align: center; }

.v2srq-mystats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    padding: 4px 0 12px;
    text-decoration: none;
    border-bottom: 1px solid #eff1f4;
}
.v2srq-mystats span { text-align: center; min-width: 0; }
.v2srq-mystats b {
    display: block;
    font-size: 17px;
    font-weight: 900;
    color: #16161a;
    line-height: 1.2;
}
.v2srq-mystats span {
    font-size: 10.5px;
    font-weight: 700;
    color: #8b8f98;
    white-space: nowrap;
}
.v2srq-mylatest {
    margin: 10px 0 0;
    font-size: 12.5px;
    font-weight: 700;
    color: #4a4d55;
}
.v2srq-mylatest small { color: #a8acb4; font-weight: 600; margin-left: 4px; }

.v2srq-myacts { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.v2srq-myacts .v2srq-btn { flex: 1 1 auto; min-width: 120px; }

@media (min-width: 768px) {
    .v2srq-mystats b { font-size: 20px; }
    .v2srq-mystats span { font-size: 11.5px; }
    .v2srq-myacts .v2srq-btn { flex: 0 0 auto; }
}
