@charset "utf-8";

/* =====================
   감상 타래 게시판 스킨
===================== */

/* ── 목록 ── */
#review_board {
    max-width: 1000px;
    margin: 0 auto;
    padding: 32px 24px;
    min-height: 100vh;
}

.rv-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 20px;
}

.rv-title {
    font-size: 3rem;
    font-weight: 800;
    font-style: italic;
    font-family: var(--title-font-family);
    letter-spacing: -1px;
    color: rgb(from var(--secondary-color) r g b / 90%);
    margin: 0;
    line-height: 1;
}
.rv-title span { color: rgb(from var(--primary-color) r g b / 90%); }

.rv-write-btn {
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--card-bg-color);
    border: none;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
}
.rv-write-btn:hover {
    background: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgb(from var(--primary-color) r g b / 25%);
}

/* 카테고리 바 */
.rv-category-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.rv-cat-btn {
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    background: var(--container-bg-color);
    color: var(--text-muted);
    transition: all 0.2s;
}
.rv-cat-btn:hover, .rv-cat-btn.active {
    background: var(--primary-color);
    color: var(--card-bg-color);
}

/* 그리드 */
.rv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.rv-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 카드 */
.rv-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--card-bg-color);
    border: 1px solid rgb(from var(--card-border-color) r g b / 30%);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.25s;
}
.rv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgb(from var(--content-font-color) r g b / 10%);
    border-color: rgb(from var(--primary-color) r g b / 30%);
}
.rv-card.is-notice {
    border-color: rgb(from var(--primary-color) r g b / 50%);
}

.rv-card-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--container-bg-color);
}
.rv-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.rv-card:hover .rv-card-thumb img { transform: scale(1.05); }
.rv-card-nothumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 2rem;
    opacity: 0.3;
}

.rv-badge-notice, .rv-badge-cat {
    position: absolute;
    top: 10px;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}
.rv-badge-notice { left: 10px; background: var(--primary-color); color: var(--card-bg-color); }
.rv-badge-cat    { right: 10px; background: rgb(0 0 0 / 50%); color: #fff; backdrop-filter: blur(4px); }

.rv-card-body { padding: 12px 14px 14px; }
.rv-card-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--content-font-color);
    line-height: 1.4;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rv-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--text-muted);
    flex-wrap: wrap;
}
.rv-card-author { font-weight: 700; }
.rv-card-date   { margin-left: auto; font-family: monospace; opacity: 0.7; }
.rv-card-cmt    { display: flex; align-items: center; gap: 3px; }

.rv-pagination { margin-top: 40px; text-align: center; }

/* ── 뷰 ── */
#review_view {
    max-width: 960px;
    margin: 0 auto;
    padding: 32px 24px;
}

/* 상단 네비 */
.rv-view-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.rv-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.rv-back:hover { color: var(--primary-color); }
.rv-view-nav-actions { display: flex; gap: 10px; }
.rv-nav-btn {
    color: var(--text-muted);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
}
.rv-nav-btn:hover  { color: var(--primary-color); }
.rv-nav-del:hover  { color: var(--error-color); }

/* 본문 카드 */
.rv-post {
    background: var(--card-bg-color);
    border: 1px solid rgb(from var(--card-border-color) r g b / 30%);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 28px;
}
.rv-post-hero {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    background: var(--container-bg-color);
}
.rv-post-hero img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    display: block;
}
.rv-post-inner { padding: 24px 28px; }
.rv-post-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.rv-post-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--container-bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.rv-post-avatar img { width: 100%; height: 100%; object-fit: cover; }
.rv-avatar-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}
.rv-avatar-icon.sm { font-size: 0.9em; }
.rv-post-info { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.rv-post-name { font-size: 14px; font-weight: 800; color: var(--content-font-color); }
.rv-post-date { font-size: 11px; color: var(--text-muted); font-family: monospace; opacity: 0.7; }
.rv-post-cat {
    padding: 2px 8px;
    background: rgb(from var(--primary-color) r g b / 15%);
    color: var(--primary-color);
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
}
.rv-post-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--content-font-color);
    line-height: 1.3;
    letter-spacing: -0.3px;
    margin: 0 0 16px;
}
.rv-post-content {
    font-size: 15px;
    color: var(--content-font-color);
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: break-word;
}
.rv-post-content img { max-width: 100%; border-radius: 10px; margin: 8px 0; }

/* ── 타래 영역 ── */
.rv-threads-wrap { display: flex; flex-direction: column; gap: 16px; }

/* 새 타래 버튼 */
.rv-new-thread-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: var(--card-bg-color);
    border: none;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.rv-new-thread-btn:hover {
    background: var(--accent-color);
    box-shadow: 0 6px 20px rgb(from var(--primary-color) r g b / 25%);
}

/* 새 타래 폼 */
.rv-new-thread-form {
    display: none;
    background: var(--card-bg-color);
    border: 1px solid rgb(from var(--card-border-color) r g b / 30%);
    border-radius: 20px;
    padding: 20px 24px;
}
.rv-new-thread-form.is-open { display: block; }

.rv-thread-form-inner {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.rv-thread-form-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--container-bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.rv-thread-form-avatar img { width: 100%; height: 100%; object-fit: cover; }
.rv-thread-form-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 10px; }

.rv-thread-title-input {
    width: 100%;
    padding: 10px 14px;
    border: none;
    border-radius: 10px;
    background: var(--form-bg-color);
    color: var(--form-text-color);
    font-size: 13px;
    font-weight: 700;
    outline: none;
    box-sizing: border-box;
    transition: all 0.2s;
}
.rv-thread-title-input:focus {
    box-shadow: 0 0 0 2px rgb(from var(--primary-color) r g b / 30%);
}
.rv-thread-title-input::placeholder { color: var(--text-muted); }

.rv-thread-content-input {
    width: 100%;
    min-height: 80px;
    padding: 10px 14px;
    border: none;
    border-radius: 10px;
    background: var(--form-bg-color);
    color: var(--form-text-color);
    font-size: 14px;
    resize: none;
    box-sizing: border-box;
    outline: none;
    line-height: 1.6;
    font-family: inherit;
    transition: all 0.2s;
}
.rv-thread-content-input.sm { min-height: 60px; font-size: 13px; }
.rv-thread-content-input:focus {
    box-shadow: 0 0 0 2px rgb(from var(--primary-color) r g b / 30%);
}
.rv-thread-content-input::placeholder { color: var(--text-muted); }

.rv-thread-form-footer {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}
.rv-cancel-btn {
    padding: 8px 16px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}
.rv-cancel-btn:hover { background: var(--border-light); color: var(--content-font-color); }
.rv-post-btn {
    padding: 8px 18px;
    background: var(--primary-color);
    color: var(--card-bg-color);
    border: none;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.rv-post-btn:hover { background: var(--accent-color); }

/* 타래 그룹 */
.rv-thread-group {
    background: var(--card-bg-color);
    border: 1px solid rgb(from var(--card-border-color) r g b / 30%);
    border-radius: 20px;
    overflow: hidden;
}
.rv-thread-group-title {
    padding: 14px 20px;
    background: rgb(from var(--primary-color) r g b / 8%);
    border-bottom: 1px solid rgb(from var(--card-border-color) r g b / 30%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}
.rv-thread-group-title:hover {
    background: rgb(from var(--primary-color) r g b / 14%);
}
.rv-thread-group-title.is-open {
    background: rgb(from var(--primary-color) r g b / 12%);
}
.rv-thread-group-label {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.rv-thread-cmt-count {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: 0;
}
.rv-thread-toggle-icon {
    font-size: 12px;
    color: var(--text-muted);
    transition: transform 0.2s;
    flex-shrink: 0;
}
.rv-thread-comments { padding: 12px 16px; display: flex; flex-direction: column; }

/* 개별 댓글 */
.rv-cmt-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
}
.rv-cmt-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 36px;
}
.rv-cmt-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--container-bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.rv-cmt-avatar img { width: 100%; height: 100%; object-fit: cover; }
.rv-cmt-avatar.sm { width: 32px; height: 32px; }

/* 스레드 연결선 */
.rv-cmt-line {
    flex: 1;
    width: 2px;
    background: rgb(from var(--card-border-color) r g b / 50%);
    margin-top: 4px;
    min-height: 20px;
}

.rv-cmt-right { flex: 1; min-width: 0; }
.rv-cmt-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}
.rv-cmt-name { font-size: 13px; font-weight: 800; color: var(--content-font-color); }
.rv-cmt-date { font-size: 10px; color: var(--text-muted); font-family: monospace; opacity: 0.6; }
.rv-cmt-actions { margin-left: auto; display: flex; gap: 8px; }
.rv-cmt-btn { color: var(--text-muted); font-size: 10px; text-decoration: none; transition: color 0.2s; }
.rv-cmt-btn:hover  { color: var(--primary-color); }
.rv-cmt-del:hover  { color: var(--error-color); }

.rv-cmt-text {
    font-size: 14px;
    color: var(--content-font-color);
    line-height: 1.65;
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* 댓글 수정폼 */
.rv-cmt-edit-form {
    display: none;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}
.rv-cmt-edit-form.is-open { display: flex; }

/* 타래 잇기 버튼 */
.rv-reply-btn {
    margin-top: 10px;
    padding: 0;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}
.rv-reply-btn:hover { color: var(--primary-color); }

/* 타래 잇기 폼 */
.rv-reply-form { display: none; margin-top: 10px; }
.rv-reply-form.is-open { display: block; }
.rv-reply-compose {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

/* 안내 문구 */
.rv-no-threads {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    font-size: 13px;
}

/* ── 반응형 ── */
@media (max-width: 1024px) {
    .rv-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
    .rv-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    #review_board, #review_view { padding: 16px; }
    .rv-post-inner { padding: 18px; }
    .rv-post-title { font-size: 18px; }
    .rv-title { font-size: 2.2rem; }
}

/* ── 글쓰기 폼 ── */
.rv-write-compose {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.rv-write-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.rv-write-row { display: flex; flex-direction: column; gap: 6px; }
.rv-write-info-row { flex-direction: row; gap: 14px; }
.rv-write-info-row .rv-write-field { flex: 1; display: flex; flex-direction: column; gap: 6px; }

.rv-write-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--text-muted);
}
.rv-write-input {
    width: 100%;
    padding: 11px 14px;
    border: none;
    border-radius: 12px;
    background: var(--form-bg-color);
    color: var(--form-text-color);
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    transition: all 0.2s;
}
.rv-write-input:focus {
    box-shadow: 0 0 0 2px rgb(from var(--primary-color) r g b / 30%);
}
.rv-write-input::placeholder { color: var(--text-muted); }
.rv-write-title { font-size: 16px; font-weight: 700; }
.rv-write-select { cursor: pointer; }

.rv-write-textarea {
    width: 100%;
    min-height: 240px;
    padding: 14px;
    border: none;
    border-radius: 14px;
    background: var(--form-bg-color);
    color: var(--form-text-color);
    font-size: 14px;
    resize: vertical;
    box-sizing: border-box;
    outline: none;
    line-height: 1.7;
    font-family: inherit;
    transition: all 0.2s;
}
.rv-write-textarea:focus {
    box-shadow: 0 0 0 2px rgb(from var(--primary-color) r g b / 30%);
}
.rv-write-textarea::placeholder { color: var(--text-muted); }

.rv-write-upload-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.rv-write-file { font-size: 13px; color: var(--text-muted); }
.rv-write-existing { font-size: 12px; color: var(--text-muted); }
.rv-write-del-label { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }

.rv-write-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 4px;
}
.rv-write-options { display: flex; align-items: center; gap: 16px; }
.rv-write-check-label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
}
.rv-write-btns { display: flex; gap: 10px; }

@media (max-width: 580px) {
    .rv-write-info-row { flex-direction: column; }
    .rv-write-compose { gap: 10px; }
}

/* ══════════════════════════════
   글쓰기 페이지 (rv-write-page)
══════════════════════════════ */

#rv-write-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 24px;
}

.rv-wpage-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--content-font-color);
    margin: 0 0 24px;
    font-family: var(--title-font-family);
}

/* 2컬럼 레이아웃 */
.rv-wlayout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 20px;
    align-items: start;
}

@media (max-width: 780px) {
    .rv-wlayout { grid-template-columns: 1fr; }
}

/* 섹션 공통 */
.rv-wsection {
    background: var(--card-bg-color);
    border: 1px solid rgb(from var(--card-border-color) r g b / 30%);
    border-radius: 16px;
    padding: 18px 20px;
    margin-bottom: 14px;
}

.rv-wsec-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.rv-wsec-label i { margin-right: 5px; }

/* 입력 필드 */
.rv-winput {
    width: 100%;
    padding: 11px 14px;
    border: none;
    border-radius: 10px;
    background: var(--form-bg-color);
    color: var(--form-text-color);
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    transition: box-shadow 0.2s;
}
.rv-winput:focus { box-shadow: 0 0 0 2px rgb(from var(--primary-color) r g b / 30%); }
.rv-winput::placeholder { color: var(--text-muted); }
.rv-wtitle { font-size: 15px; font-weight: 700; }
.rv-wselect { cursor: pointer; }

/* 비회원 필드 */
.rv-wfield-row { display: flex; gap: 12px; margin-bottom: 14px; }
.rv-wfield-nonmember .rv-wfield { flex: 1; }
.rv-wlabel {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

/* 이미지 드롭존 */
.rv-img-dropzone {
    display: block;
    position: relative;
    border: 2px dashed rgb(from var(--card-border-color) r g b / 60%);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    min-height: 180px;
    background: var(--form-bg-color);
    transition: border-color 0.2s, background 0.2s;
}
.rv-img-dropzone:hover,
.rv-img-dropzone.rv-drag-over {
    border-color: var(--primary-color);
    background: rgb(from var(--primary-color) r g b / 5%);
}
.rv-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 20px;
    color: var(--text-muted);
    text-align: center;
    pointer-events: none;
}
.rv-img-placeholder i { font-size: 2rem; margin-bottom: 10px; opacity: 0.5; }
.rv-img-placeholder p  { font-size: 13px; font-weight: 600; margin: 0 0 4px; }
.rv-img-placeholder small { font-size: 11px; opacity: 0.7; }

.rv-img-preview {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}
.rv-img-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.rv-img-remove:hover { background: rgba(0,0,0,0.8); }

.rv-img-del-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
    cursor: pointer;
}

/* 옵션 */
.rv-woptions { display: flex; flex-direction: column; gap: 10px; }
.rv-wopt-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--form-bg-color);
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s;
}
.rv-wopt-item:hover { background: rgb(from var(--primary-color) r g b / 8%); }
.rv-wopt-item input[type="checkbox"] { display: none; }
.rv-wopt-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgb(from var(--primary-color) r g b / 12%);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: background 0.2s;
}
.rv-wopt-item:has(input:checked) .rv-wopt-icon {
    background: var(--primary-color);
    color: var(--card-bg-color);
}
.rv-wopt-item:has(input:checked) { background: rgb(from var(--primary-color) r g b / 8%); }
.rv-wopt-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--content-font-color); }
.rv-wopt-text small  { font-size: 11px; color: var(--text-muted); }

/* 에디터 영역 */
.rv-weditor-section { padding-bottom: 14px; }
.rv-weditor-wrap { min-height: 300px; }

/* 버튼 */
.rv-wfooter {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding-top: 4px;
}
.rv-wbtn {
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all 0.2s;
}
.rv-wbtn-cancel {
    background: var(--form-bg-color);
    color: var(--text-muted);
}
.rv-wbtn-cancel:hover { background: var(--container-bg-color); color: var(--content-font-color); }
.rv-wbtn-submit {
    background: var(--primary-color);
    color: var(--card-bg-color);
}
.rv-wbtn-submit:hover {
    background: var(--accent-color);
    box-shadow: 0 6px 20px rgb(from var(--primary-color) r g b / 30%);
}
.rv-wbtn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

@media (max-width: 500px) {
    .rv-wfooter { flex-direction: column; }
    .rv-wbtn { justify-content: center; }
    .rv-wfield-row { flex-direction: column; }
}
