/* =========================================================
   melegek.hu - components.css
   Újrahasználható komponensek: gombok, kártyák, formok, alert boxok, badge-ek.
   Forrás: korábbi /assets/css/style.css
   Refaktor típusa: moduláris bontás redesign nélkül
   ========================================================= */

:root {
    --bg: #0b0b12;
    --panel: #151523;
    --panel-2: #1d1d30;
    --text: #f2f2f7;
    --muted: #b7b7c9;
    --accent: #c2185b;
    --accent-2: #7b1fa2;
    --border: rgba(255,255,255,.08);
    --success: #1f9d66;
    --error: #d64545;
    --shadow: 0 18px 40px rgba(0,0,0,.35);
}

.card {
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow);
}

input:focus {
    outline: none;
    border-color: rgba(194,24,91,.55);
    box-shadow: 0 0 0 4px rgba(194,24,91,.14);
}

.form {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-row label {
    font-weight: 600;
    color: var(--muted);
}

.form-row input,
.form-row textarea {
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
    color: #fff;
}

.form-row select {
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
    color: #fff;
    width: 100%;
    min-height: 46px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.04);
    color: var(--text);
    padding: 0 14px;
}

input[type="file"] {
    padding: 10px 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    width: 100%;
    min-height: 46px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.04);
    color: var(--text);
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.custom-select-trigger:hover {
    background: rgba(255,255,255,.06);
}

.custom-select.is-open .custom-select-trigger,
.custom-select-trigger:focus {
    outline: none;
    border-color: rgba(194,24,91,.55);
    box-shadow: 0 0 0 4px rgba(194,24,91,.14);
}

.custom-select-arrow {
    margin-left: 12px;
    font-size: 14px;
    opacity: .8;
}

.custom-select-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #151523;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 8px;
    display: none;
    z-index: 30;
}

.custom-select.is-open .custom-select-menu {
    display: block;
}

.custom-select-option {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--text);
    text-align: left;
    padding: 12px 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.custom-select-option:hover,
.custom-select-option.is-selected {
    background: rgba(255,255,255,.08);
}

.custom-select-option:focus {
    outline: none;
    background: rgba(194,24,91,.14);
}

.form-feedback {
    font-size: 0.85rem;
    margin-top: 6px;
    font-size: .85rem;
    margin-top: 6px;
    min-height: 18px;
}

.form-feedback.error {
    color: #ff4d4d;
    color: #ff5a5a;
}

.form-feedback.success {
    color: #4caf50;
    color: #57c27b;
}

.form-card {
    position: relative;
    padding: 22px;
    border-radius: 18px;
    background: rgba(16, 22, 35, 0.92);
    border: 1px solid rgba(115, 140, 255, 0.16);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

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

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(115, 140, 255, 0.45);
    box-shadow: 0 0 0 3px rgba(115, 140, 255, 0.12);
}

.form-help {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: rgba(234, 240, 255, 0.68);
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: rgba(234, 240, 255, 0.68);
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.alert {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 20px;
    font-weight: 600;
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
}

.alert-error {
    background: rgba(214,69,69,.18);
    border: 1px solid rgba(214,69,69,.35);
    background: rgba(120, 18, 35, 0.22);
    border: 1px solid rgba(255, 99, 132, 0.28);
    color: #ffd8df;
    background: rgba(120, 18, 35, 0.22);
    border: 1px solid rgba(255, 99, 132, 0.28);
    color: #ffd8df;
}

.alert-success {
    background: rgba(31,157,102,.18);
    border: 1px solid rgba(31,157,102,.35);
    background: rgba(28, 112, 62, 0.20);
    border: 1px solid rgba(74, 222, 128, 0.24);
    color: #d8ffe6;
}

.alert-info {
    background: rgba(39, 80, 131, 0.22);
    border: 1px solid rgba(96, 165, 250, 0.26);
    color: #d9ecff;
}

.alert ul {
    margin: 10px 0 0 18px;
    padding: 0;
    margin: 0 0 0 18px;
    padding: 0;
}

.muted {
    opacity: .75;
}

.text-danger {
    color: #ff9fb1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, #5b6dff, #7a5cff);
    color: #fff;
    background: linear-gradient(135deg, #5b6dff, #7a5cff);
    color: #fff;
    background: #007bff;
    color: #fff;
}

.btn-primary:hover {
    background: #0056b3;
}

.btn-secondary {
    background: rgba(255,255,255,.04);
    border-color: var(--border);
    color: var(--text);
    background: rgba(255,255,255,0.08);
    color: #eaf0ff;
    background: rgba(255,255,255,0.08);
    color: #eaf0ff;
    background: #444;
    color: #fff;
}

.btn-danger {
    background: linear-gradient(135deg, #8f2548, #c03a63);
    color: #fff;
    background: #dc3545;
    color: #fff;
}

.btn-sm {
    padding: 4px 8px;
    font-size: 12px;
}

.pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.pill-option {
    position: relative;
    cursor: pointer;
}

.pill-option input {
    display: none;
}

.pill-option span {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #dcdcdc;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.2s ease;
}

.pill-option span:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 0 12px rgba(255,255,255,0.05);
}

.pill-option input:checked + span {
    color: #fff;
    background: linear-gradient(135deg, #007bff, #8f5cff);
    border-color: rgba(120,120,255,0.6);
    box-shadow: 0 0 12px rgba(0, 123, 255, 0.3),
        0 0 20px rgba(143, 92, 255, 0.2);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(115, 140, 255, 0.18);
    background: rgba(7, 11, 20, 0.9);
    color: #eaf0ff;
    outline: none;
    padding: 8px;
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}

.inline-action-form {
    margin: 0;
}

select optgroup {
    color: #ffffff;
    background: #11151f;
}

select:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.form-group select {
    background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.78) 50%),
        linear-gradient(135deg, rgba(255,255,255,0.78) 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px),
        calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.btn-disabled {
    background: linear-gradient(135deg, rgba(120,120,140,0.35), rgba(90,90,110,0.35));
    color: rgba(255,255,255,0.72);
    border: 1px solid rgba(255,255,255,0.08);
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.9;
}

.btn-disabled:hover {
    transform: none;
    box-shadow: none;
}

.btn-lg {
    min-height: 48px;
    padding: 12px 20px;
    font-size: 15px;
}

.section-eyebrow {
    margin-bottom: 8px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.58);
}

.bio-helper-head {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
}

.bio-helper-note {
    font-size: 13px;
    color: rgba(255,255,255,0.72);
}

.bio-generator-box {
    margin-bottom: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
}

.bio-generator-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.bio-generator-status {
    font-size: 13px;
    color: rgba(255,255,255,0.74);
    line-height: 1.5;
}

.bio-generate-btn.is-loading {
    opacity: 0.7;
}

.btn-ghost {
    background: transparent;
    color: #334155;
    border: 1px solid rgba(51, 65, 85, 0.18);
}

.btn-ghost:hover {
    background: rgba(51, 65, 85, 0.06);
}

.cookies-demo {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 999999;
    background: rgba(10, 14, 28, 0.96);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    box-shadow: 0 18px 48px rgba(0,0,0,.28);
    padding: 18px;
    pointer-events: auto;
}

.cookies-demo.hidden {
    display: none;
}

.cookies-demo * {
    pointer-events: auto;
}

.cookies-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.cookies-actions button {
    cursor: pointer;
    position: relative;
    z-index: 1000000;
}

/* =========================
   ALERTS
   ========================= */


.alert {
    margin-bottom: 22px;
    padding: 14px 18px;
    border-radius: 16px;
    font-weight: 600;
    border: 1px solid transparent;
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.alert-success {
    color: #d1fae5;
    border-color: rgba(16, 185, 129, 0.22);
    background: linear-gradient(135deg, rgba(6, 95, 70, 0.92) 0%, rgba(5, 150, 105, 0.62) 100%);
}

.alert-error {
    color: #ffe4e6;
    border-color: rgba(244, 63, 94, 0.22);
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.92) 0%, rgba(225, 29, 72, 0.55) 100%);
}

.btn-danger {
    width: 100%;
    border-radius: 12px;
    padding: 12px;

    background: linear-gradient(135deg, #ef4444 0%, #e11d48 100%);
    color: #fff;
    font-weight: 700;

    border: none;
    cursor: pointer;

    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.25);
    transition: 0.2s;
}

.btn-danger:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(225, 29, 72, 0.35);
}

.btn-view {
    background: rgba(255,255,255,0.12);
    color: #fff;
}

.btn-view:hover {
    background: rgba(255,255,255,0.2);
}

.btn-lg {
    min-height: 48px;
    padding: 0 20px;
    font-size: 15px;
}

.section-eyebrow {
    margin-bottom: 8px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.56);
}

/* ===== LATEST GRID ===== */


.latest-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.highlight-col {
    background: rgba(123,92,255,0.08);
    font-weight: 600;
    color: #fff;
}

.burger-toggle {
    display: none;
    appearance: none;
    -webkit-appearance: none;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    box-shadow:
        0 10px 24px rgba(0,0,0,0.20),
        0 1px 0 rgba(255,255,255,0.05) inset;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    flex-shrink: 0;
}

.burger-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.burger-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.burger-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-user-box {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.mobile-user-name {
    margin-bottom: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.82);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.contact-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 24px;
}

.contact-data {
    display: grid;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-data span {
    display: block;
    font-size: 12px;
    opacity: 0.6;
}

.contact-data strong {
    font-size: 15px;
}

.contact-emails p {
    margin-bottom: 12px;
    font-size: 14px;
}

.contact-help {
    margin-bottom: 14px;
    opacity: 0.75;
}

.form-row {
    margin-bottom: 14px;
}

.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    color: #fff;
}

.contact-note {
    margin-top: 20px;
    font-size: 13px;
    opacity: 0.75;
}

.contact-warning {
    margin-top: 18px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 0, 0, 0.08);
    border: 1px solid rgba(255,0,0,0.2);
    font-size: 13px;
    color: #ffb3b3;
}

.alert {
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 14px;
}

.alert-success {
    background: rgba(0, 180, 0, 0.12);
    border: 1px solid rgba(0,180,0,0.3);
    color: #aaffaa;
}

.alert-error {
    background: rgba(255, 0, 0, 0.12);
    border: 1px solid rgba(255,0,0,0.3);
    color: #ffb3b3;
}

.contact-data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 24px;
}

.contact-data-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 12px;
}

.contact-data-item span {
    display: block;
    font-size: 12px;
    opacity: 0.6;
    margin-bottom: 4px;
}

.contact-data-item strong {
    font-size: 14px;
}

.contact-emails-grid {
    display: grid;
    gap: 12px;
}

.contact-email-item {
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
}

.contact-email-item span {
    display: block;
    font-size: 12px;
    opacity: 0.6;
}

.contact-email-item strong {
    font-size: 14px;
}

.contact-email-item.highlight {
    border: 1px solid rgba(255, 80, 80, 0.4);
    background: rgba(255, 0, 0, 0.08);
}

.btn-sm {
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
}

.emoji-toggle-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(96, 165, 250, 0.18);
    background: rgba(15, 23, 42, 0.9);
    border-radius: 14px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.emoji-toggle-btn:hover,
.emoji-toggle-btn.is-open {
    transform: translateY(-1px);
    border-color: rgba(236, 72, 153, 0.28);
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.28);
}

.emoji-picker-panel {
    position: absolute;
    right: 16px;
    bottom: calc(100% + 10px);
    width: min(320px, calc(100vw - 48px));
    padding: 14px;
    border-radius: 20px;
    border: 1px solid rgba(96, 165, 250, 0.16);
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.98), rgba(15, 23, 42, 0.98));
    box-shadow: 0 22px 44px rgba(2, 6, 23, 0.42);
    z-index: 30;
}

.emoji-picker-head {
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.66);
    margin-bottom: 10px;
}

.emoji-picker-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.emoji-picker-item {
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(30, 41, 59, 0.75);
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform .14s ease, background .14s ease;
}

.emoji-picker-item:hover {
    transform: scale(1.06);
    background: rgba(51, 65, 85, 0.92);
}

.section-intro {
    margin-bottom: 28px;
}

.section-intro.center {
    text-align: center;
}

.section-intro h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.section-intro p {
    max-width: 820px;
    margin: 0 auto;
    color: rgba(255,255,255,0.76);
    line-height: 1.75;
}

.info-grid,
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.info-card,
.step-card,
.seo-card {
    padding: 26px;
    background: #141d31;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.info-card h3,
.step-card h3,
.seo-card h2 {
    margin-top: 0;
    color: #fff;
}

.info-card p,
.step-card p,
.seo-card p {
    margin-bottom: 0;
    color: rgba(255,255,255,0.76);
    line-height: 1.75;
}

.step-number {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6c5ce7, #7c9cff);
    color: #fff;
    font-weight: 700;
}

.seo-block {
    padding-top: 28px;
}

.card-alert {
    border: 1px solid #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

.business-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

button {
    margin-top: 15px;
    padding: 12px;
    border-radius: 10px;
    background: linear-gradient(135deg, #00d4ff, #6a00ff);
    color: white;
    border: none;
    cursor: pointer;
}

.card {
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.avatar img {
    width: 100%;
    border-radius: 12px;
}

.avatar-placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
}

.progress-bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin: 10px 0;
}

.progress-bar div {
    height: 100%;
    background: linear-gradient(90deg,#00c6ff,#ff00aa);
    border-radius: 10px;
}

.btn-primary {
    display: block;
    margin-top: 10px;
    padding: 10px;
    text-align: center;
    background: linear-gradient(90deg,#ff0066,#ff3399);
    border-radius: 10px;
    color: #fff;
}

.avatar img,
.avatar-placeholder {
    height: 220px;
    object-fit: cover;
}

.card {
    transition: 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.highlight {
    border: 1px solid #ff3399;
    background: rgba(255,0,100,0.05);
}

.btn-secondary {
    display: block;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);

    transition: 0.2s;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.section-title-row h3 {
    margin: 0;
}

.section-title-row a {
    color: #8fb4ff;
    text-decoration: none;
    font-weight: 700;
}

.member-badge {
    position: absolute;
    left: 8px;
    top: 8px;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    background: rgba(236,72,153,0.85);
    color: #fff;
}

.member-badge {
    top: 10px;
    left: 10px;

    backdrop-filter: blur(6px);
}

.member-badge {
    z-index: 4;
}

.member-badge {
    position: absolute;

    top: 10px;
    right: 10px; /* ← EZ A LÉNYEG */

    left: auto;  /* biztos ami biztos */

    padding: 4px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;

    backdrop-filter: blur(6px);
    z-index: 4;
}

.member-badge {
    background: rgba(236,72,153,0.85);
    color: #fff;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
}

.checkbox-row input {
    margin-top: 3px;
    transform: scale(1.2);
}

.checkbox-row a {
    color: #7b5cff;
    text-decoration: none;
}

.checkbox-row a:hover {
    text-decoration: underline;
}

.meta {
    font-size: 12px;
    color: #aaa;
}

.btn {
    display: inline-block;
    margin-top: 10px;
}

.btn-secondary {
    margin-left: 10px;
}

.form-actions {
    margin-top: 20px;
}

.btn-primary {
    padding: 12px 20px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #6c5cff, #a855f7);
    color: #fff;
    cursor: pointer;
}

.clickable-card {
    cursor: pointer;
    transition:
        transform 0.16s ease,
        background 0.16s ease,
        border-color 0.16s ease,
        box-shadow 0.16s ease;
}

.clickable-card:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.065);
    border-color: rgba(255,255,255,0.16);
    box-shadow: 0 18px 45px rgba(0,0,0,0.28);
}

.clickable-card:active {
    transform: translateY(0);
}

.clickable-card:focus-visible {
    outline: 2px solid rgba(255,60,136,0.85);
    outline-offset: 4px;
}

.pending-status-badge {
    color: #fde68a;
    border: 1px solid rgba(245,158,11,0.35);
    background: rgba(245,158,11,0.12);
}

.pending-status-badge {
    color: #fde68a;
    border: 1px solid rgba(245,158,11,0.35);
    background: rgba(245,158,11,0.12);
}
