:root {
    --bg-main: #1e1e20;
    --bg-secondary: #161617;
    --card-bg-white: #2c2c2e;
    --card-bg-dark: #2c2c2e;
    --text-primary: #ffffff;
    --text-secondary: #8e8e93;
    --text-dark: #1c1c1e;
    --accent-color: #4cd964;
    --accent-gradient: linear-gradient(135deg, #4cd964 0%, #2cb145 100%);
    --nav-bg: #161617;
    --border-radius-lg: 20px;
    --border-radius-md: 14px;
    --border-radius-sm: 10px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-family);
    display: flex;
    justify-content: center;
    min-height: 100vh;
    overflow-x: hidden;
    touch-action: manipulation;
}

.app-container {
    width: 100%;
    max-width: 480px;
    background-color: var(--bg-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 90px;
}

/* Content Area & Tabs */
.content-area {
    flex: 1;
    padding: 20px 16px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.25s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   TAB 1: CATALOG
========================================================= */

.search-container {
    margin-bottom: 16px;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-box input {
    width: 100%;
    background-color: #ffffff;
    border: none;
    border-radius: 28px;
    padding: 14px 44px 14px 20px;
    font-size: 15px;
    color: #333333;
    font-family: inherit;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    outline: none;
    transition: all 0.2s ease;
}

.search-box input::placeholder {
    color: #b0b0b5;
}

.search-box input:focus {
    box-shadow: 0 4px 18px rgba(255, 255, 255, 0.2);
}

.search-box .search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #333333;
    display: flex;
    align-items: center;
    pointer-events: none;
}

/* Filter Chips */
.filter-chips {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 16px;
    scrollbar-width: none;
}

.filter-chips::-webkit-scrollbar {
    display: none;
}

.chip {
    background-color: #2c2c2e;
    color: #d1d1d6;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chip.active {
    background-color: #ffffff;
    color: #1c1c1e;
    font-weight: 600;
}

/* Equipment Grid */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.exercise-card {
    background-color: #2c2c2e;
    border-radius: 18px;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.exercise-card:active {
    transform: scale(0.96);
}

.exercise-card img {
    max-width: 85%;
    max-height: 75%;
    object-fit: contain;
    margin-bottom: 8px;
}

.exercise-card .card-title {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    margin-top: 4px;
    word-break: break-word;
}

.exercise-card .card-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #a1a1a6;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 10px;
}

/* =========================================================
   TAB 2: ACTIVITY HEATMAP MATRIX & LIQUID BATTERY
========================================================= */

.activity-top-row {
    display: grid;
    grid-template-columns: 1fr 90px;
    gap: 14px;
    margin-bottom: 24px;
}

/* Activity Matrix Card */
.activity-matrix-card {
    background-color: #161617;
    border-radius: 20px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.matrix-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.matrix-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.matrix-main-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.matrix-date-indicator {
    font-size: 11px;
    color: var(--accent-color);
    font-weight: 600;
}

.matrix-nav-arrows {
    display: flex;
    align-items: center;
    gap: 6px;
}

.matrix-month-title {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

.cal-arrow-btn {
    background: #2c2c2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.matrix-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    color: #8e8e93;
}

.heatmap-matrix-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    text-align: center;
}

.matrix-sq {
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    background-color: #262628;
    color: #a1a1a6;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.1s ease, background-color 0.2s ease;
}

.matrix-sq.empty {
    background-color: transparent;
    cursor: default;
}

.matrix-sq.level-1 { background-color: #1e5229; color: #fff; }
.matrix-sq.level-2 { background-color: #2cb145; color: #fff; }
.matrix-sq.level-3 { background-color: #4cd964; color: #1c1c1e; font-weight: 700; }

.matrix-sq.selected {
    box-shadow: 0 0 0 2px #ffffff;
    color: #ffffff;
}

/* Liquid Battery Widget - NO ROTATION OR DIAGONAL STICKS */
.battery-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.battery-cap {
    width: 32px;
    height: 10px;
    background-color: #3a3a3c;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    margin-bottom: -1px;
}

.battery-body {
    width: 100%;
    flex: 1;
    background-color: #2c2c2e;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.battery-liquid-fill {
    width: 100%;
    background: linear-gradient(180deg, #4cd964 0%, #2cb145 100%);
    position: relative;
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 6px 6px;
}

/* Horizontal Surface Wave */
.liquid-wave-surface {
    position: absolute;
    top: -8px;
    left: 0;
    width: 200%;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C150,50 350,-50 500,0 C650,50 900,-50 1200,0 L1200,120 L0,120 Z' fill='%234cd964'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size: 50% 100%;
    animation: horizontalWave 3s infinite linear;
}

@keyframes horizontalWave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.battery-percent-text {
    position: absolute;
    top: 14px;
    width: 100%;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    z-index: 2;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* Plan Activity Section */
.plan-activity-section {
    margin-top: 8px;
}

.plan-activity-header {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plan-activity-subtitle {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.subday-tabs-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.subday-btn {
    background: #2c2c2e;
    color: #a1a1a6;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.subday-btn.active {
    background: #ffffff;
    color: #1c1c1e;
    border-color: #ffffff;
    font-weight: 700;
}

.plan-exercises-activity-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.activity-item-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: transparent;
}

.activity-item-img-box {
    width: 80px;
    height: 80px;
    background-color: #2c2c2e;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.activity-item-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.activity-item-progress-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.activity-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.activity-progress-bar-bg {
    width: 100%;
    height: 16px;
    background-color: #2c2c2e;
    border-radius: 8px;
    overflow: hidden;
}

.activity-progress-bar-fill {
    height: 100%;
    background-color: #4cd964;
    border-radius: 8px;
    transition: width 0.4s ease;
}

.btn-edit-exercise {
    background: transparent;
    color: #ffffff;
    border: 1px dashed rgba(255, 255, 255, 0.4);
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-edit-exercise:active {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
}

/* =========================================================
   TAB 3: WORKOUT PLANS
========================================================= */

.plans-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.plans-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan-card {
    background: #161617;
    border-radius: 20px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.plan-card.active-selected {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.plan-card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.plan-card-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.plan-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.plan-card-desc {
    font-size: 13px;
    color: var(--text-secondary);
}

.plan-badges-row {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 2px;
}

.plan-split-badge {
    background: rgba(255, 255, 255, 0.08);
    color: #d1d1d6;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
}

.plan-active-indicator {
    background: rgba(76, 217, 100, 0.15);
    color: var(--accent-color);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
}

.plan-subdays-preview {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #222224;
    border-radius: 14px;
    padding: 12px 14px;
}

.plan-subday-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.plan-subday-group-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-color);
}

.plan-subday-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.plan-exercise-badge {
    background: #2c2c2e;
    color: #ffffff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-actions-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-buttons-left {
    display: flex;
    gap: 8px;
}

.plan-icon-btn {
    background: #2c2c2e;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
}

.plan-icon-btn:active {
    transform: scale(0.94);
    background: #3a3a3c;
}

.plan-icon-btn.danger {
    color: #ff453a;
    border-color: rgba(255, 69, 58, 0.25);
    background: rgba(255, 69, 58, 0.08);
}

.plan-icon-btn.danger:active {
    background: rgba(255, 69, 58, 0.2);
}

.split-segmented-control {
    display: flex;
    background: #1c1c1e;
    padding: 4px;
    border-radius: 12px;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.split-seg-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: #8e8e93;
    padding: 8px 0;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.split-seg-btn.active {
    background: #2c2c2e;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* =========================================================
   TAB 4: PROFILE & VOLUME TREND BAR CHART
========================================================= */

.profile-card {
    background: #2c2c2e;
    border-radius: var(--border-radius-lg);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.profile-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #3a3a3c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.profile-name {
    font-size: 18px;
    font-weight: 700;
}

.profile-status {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Volume Progression Bar Chart (Matching Photo 2 Trend Chart) */
.volume-trend-card {
    background: #2c2c2e;
    border-radius: var(--border-radius-md);
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trend-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trend-title {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}

.trend-total-badge {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-color);
}

.volume-bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 110px;
    gap: 6px;
    padding-top: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
}

.chart-bar-fill {
    width: 100%;
    background: linear-gradient(180deg, #4cd964 0%, #1e5229 100%);
    border-radius: 4px 4px 0 0;
    transition: height 0.4s ease;
    min-height: 4px;
}

.chart-bar-val {
    font-size: 9px;
    font-weight: 700;
    color: #a1a1a6;
    margin-top: 4px;
}

/* MODALS */
.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #1c1c1e;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
    transition: transform 0.15s ease;
}

.modal-close:active {
    transform: scale(0.9);
}

.edit-sliders-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 30px 24px;
    background-color: #1e1e20;
}

.edit-ex-card-image {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1 / 1;
    background-color: #2c2c2e;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.edit-ex-card-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.exercise-detail-image-box {
    background-color: #2c2c2e;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.exercise-detail-image-box img {
    max-height: 160px;
    object-fit: contain;
}

.sliders-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 30px 0;
}

.slider-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-title {
    font-size: 14px;
    color: #8e8e93;
}

.slider-val {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.custom-range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: #ffffff;
    border-radius: 2px;
    outline: none;
}

.custom-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    transition: transform 0.1s ease;
}

.custom-range-slider::-webkit-slider-thumb:active {
    transform: scale(1.2);
}

.edit-modal-footer {
    width: 100%;
}

.selector-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1c1c1e;
    padding: 10px 12px;
    border-radius: 10px;
    gap: 10px;
}

.selector-item-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.day-select-mini {
    background: #2c2c2e;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 12px;
    outline: none;
}

.selector-list::-webkit-scrollbar {
    width: 6px;
}

.selector-list::-webkit-scrollbar-track {
    background: #1c1c1e;
    border-radius: 4px;
}

.selector-list::-webkit-scrollbar-thumb {
    background: #3a3a3c;
    border-radius: 4px;
}

/* BOTTOM NAVIGATION BAR */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background-color: var(--nav-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 14px 0 20px 0;
    z-index: 100;
}

.nav-item {
    background: none;
    border: none;
    color: #8e8e93;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-item svg { stroke-width: 2.2; }

.nav-item.active {
    color: #ffffff;
    transform: scale(1.1);
}

.section-title { font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.subsection-title { font-size: 16px; font-weight: 600; color: var(--text-secondary); margin: 20px 0 12px 0; }

.primary-btn {
    background: var(--accent-gradient);
    color: #ffffff;
    border: none;
    padding: 14px 20px;
    border-radius: var(--border-radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.1s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.primary-btn:active { opacity: 0.9; transform: scale(0.98); }
.primary-btn.full-width { width: 100%; }

.secondary-btn {
    background: #2c2c2e;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: var(--border-radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.stat-card {
    background: #2c2c2e;
    border-radius: var(--border-radius-md);
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.stat-value { font-size: 18px; font-weight: 700; color: var(--accent-color); }
.stat-label { font-size: 11px; color: var(--text-secondary); }

.records-list {
    background: #2c2c2e;
    border-radius: var(--border-radius-md);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.record-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.record-item:last-child { border-bottom: none; }

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 200;
    align-items: flex-end;
    justify-content: center;
}

.modal.active { display: flex; animation: slideUp 0.3s ease-out; }

.modal-content {
    background: #2c2c2e;
    width: 100%;
    max-width: 480px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    padding: 24px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content.full-screen {
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    display: flex;
    flex-direction: column;
}

.modal-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.modal-tags { display: flex; gap: 8px; margin-bottom: 12px; }
.tag { background: rgba(255, 255, 255, 0.1); font-size: 12px; padding: 4px 10px; border-radius: 10px; }
.tag-accent { background: rgba(76, 217, 100, 0.2); color: var(--accent-color); }
.modal-description { font-size: 14px; color: var(--text-secondary); line-height: 1.5; margin-bottom: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 13px; color: var(--text-secondary); }

.form-input {
    background: #1c1c1e;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 10px 14px;
    color: #fff;
    font-size: 14px;
    outline: none;
}
