/* BAVI Home v4.0 - Additional Styles */
/* This file adds to styles.css - does NOT replace it */

/* ============================================
   FIX: Text on orange backgrounds
   With the darker orange, white text is readable
   ============================================ */
.msg-user {
    color: #ffffff;
}
.msg-meta .category {
    color: #ffffff;
}
.modal-tag.category {
    color: #ffffff;
}
.view-toggle-btn.active {
    color: #ffffff;
}
.notes-tab.active {
    color: #ffffff;
}
.move-to-option .current-badge {
    color: #ffffff;
}
.trash-btn-restore {
    color: #ffffff;
}
.modal-btn-primary {
    color: #ffffff;
}
.send-btn {
    color: #ffffff;
}
.inline-edit-save {
    color: #ffffff;
}
.confirm-ok {
    color: #ffffff;
}

/* ============================================
   BAVI Home title - Serif font (Playfair Display)
   Only this one element. Everything else stays Poppins.
   ============================================ */
.bavi-title {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.5px;
}

/* ============================================
   LOCATION DROPDOWN (Chat Screen)
   ============================================ */
.chat-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.location-dropdown-wrapper {
    position: relative;
}
.loc-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 7px 14px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 13px;
    cursor: pointer;
    transition: border-color 0.2s;
}
.loc-dropdown-btn:hover {
    border-color: var(--accent-primary);
}
.loc-dropdown-btn i {
    width: 14px;
    height: 14px;
}
.loc-chevron {
    width: 12px !important;
    height: 12px !important;
    transition: transform 0.2s;
}
.loc-dropdown.open + .loc-dropdown-btn .loc-chevron,
.loc-dropdown.open .loc-chevron {
    transform: rotate(180deg);
}
.loc-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 240px;
    max-height: 320px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow-y: auto;
    z-index: 50;
    display: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.loc-dropdown.open {
    display: block;
}
.loc-option {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 11px 14px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-primary);
    transition: background 0.15s;
    border-bottom: 1px solid rgba(71, 85, 105, 0.3);
}
.loc-option:last-of-type {
    border-bottom: none;
}
.loc-option:hover {
    background: var(--bg-tertiary);
}
.loc-option.active {
    color: var(--accent-primary);
    font-weight: 500;
}
.loc-check {
    margin-left: auto;
    color: var(--accent-primary);
    font-size: 14px;
    flex-shrink: 0;
}
.loc-indent-line {
    display: inline-block;
    width: 1px;
    height: 14px;
    background: var(--border-color);
    margin-right: 6px;
    flex-shrink: 0;
}
.loc-add-new {
    border-top: 1px solid var(--border-color);
    color: var(--accent-primary);
    font-weight: 500;
}
.loc-add-icon {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}
.loc-add-form {
    padding: 10px 14px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-primary);
    border-radius: 0 0 12px 12px;
}
.loc-parent-select {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 8px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 12px;
    font-family: inherit;
}
.loc-add-input-row {
    display: flex;
    gap: 8px;
}
.loc-add-input {
    flex: 1;
    padding: 8px 10px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 13px;
    font-family: inherit;
}
.loc-add-input:focus {
    outline: none;
    border-color: var(--accent-primary);
}
.loc-add-confirm {
    padding: 8px 14px;
    background: var(--accent-primary);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    font-family: inherit;
}

/* ============================================
   LIBRARY (Settings > Category & Location Library)
   ============================================ */
.lib-edit-toggle {
    padding: 6px 14px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 13px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}
.lib-edit-toggle.active {
    background: var(--accent-primary);
    color: #ffffff;
    border-color: var(--accent-primary);
}
.library-content {
    overflow-y: auto;
    padding-bottom: 20px;
}
.library-section {
    margin: 16px;
}
.library-section-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 10px;
    padding: 0 4px;
}
.lib-tree {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.lib-node {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid rgba(71, 85, 105, 0.3);
    transition: background 0.15s;
}
.lib-node:last-child {
    border-bottom: none;
}
.lib-node:hover {
    background: rgba(51, 65, 85, 0.3);
}
.lib-node.lib-archived {
    opacity: 0.5;
}
.lib-node-info {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
}
.lib-indent-marker {
    color: var(--text-secondary);
    font-size: 12px;
    flex-shrink: 0;
}
.lib-node-name {
    font-size: 14px;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lib-node-name[contenteditable="true"] {
    border-bottom: 1px dashed var(--accent-primary);
    outline: none;
    padding: 2px 4px;
    border-radius: 4px;
}
.lib-node-name[contenteditable="true"]:focus {
    background: var(--bg-tertiary);
}
.lib-archived-badge {
    font-size: 10px;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 2px 6px;
    border-radius: 4px;
    flex-shrink: 0;
}
.lib-node-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}
.lib-action-btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.lib-action-btn:hover {
    border-color: var(--accent-primary);
}
.lib-archive {
    font-size: 12px;
}
.lib-restore {
    font-size: 14px;
}
.lib-add-root {
    padding: 12px 16px;
    color: var(--accent-primary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    border-top: 1px solid var(--border-color);
}
.lib-add-root:hover {
    background: var(--bg-tertiary);
}

/* Library panel scroll */
#libraryPanel {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 40px;
}

/* Location dropdown search */
.loc-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.loc-search-input {
    width: 100%;
    padding: 10px 32px 10px 14px;
    background: var(--bg-primary);
    border: none;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 13px;
    font-family: inherit;
    outline: none;
}
.loc-search-input::placeholder {
    color: var(--text-secondary);
}
.loc-search-clear {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.15s;
}
.loc-search-clear:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary);
}
.loc-no-results {
    padding: 12px 14px;
    color: var(--text-secondary);
    font-size: 13px;
    text-align: center;
}
.loc-create-option {
    border-top: 1px solid var(--border-color);
    color: var(--accent-primary);
    font-weight: 500;
}

/* Multi-category tags in item displays */
.multi-cat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 2px;
}
.cat-path-tag {
    font-size: 10px;
    background: rgba(194, 65, 12, 0.2);
    color: var(--accent-primary);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Tags library section */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px;
}
.tag-cloud-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg-tertiary);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-primary);
}
.tag-cloud-count {
    font-size: 11px;
    color: var(--text-secondary);
    background: var(--bg-primary);
    padding: 1px 6px;
    border-radius: 10px;
}
.tag-cloud-remove {
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1;
    padding: 0 2px;
}
.tag-cloud-remove:hover {
    color: var(--error);
}

/* ============================================
   DRAG & DROP (Library Edit Mode)
   ============================================ */
.lib-node[draggable="true"] {
    cursor: grab;
    transition: opacity 0.2s, background 0.15s;
}
.lib-node[draggable="true"]:active {
    cursor: grabbing;
}
.lib-node.drop-target {
    background: rgba(194, 65, 12, 0.15);
    border-left: 3px solid var(--accent-primary);
}

/* Move button in library */
.lib-action-btn[title="Move"] {
    font-size: 14px;
}

/* ============================================
   LIBRARY ARCHIVED TOGGLE
   ============================================ */
#libraryArchivedToggle {
    padding: 4px 10px;
    font-size: 11px;
}
#libraryArchivedToggle.active {
    background: var(--accent-primary);
    color: #ffffff;
    border-color: var(--accent-primary);
}

/* ============================================
   LISTS v4.2
   ============================================ */

.lists-empty {
    text-align: center;
    color: var(--text-secondary);
    padding: 60px 20px;
    font-size: 14px;
}

/* List cards (overview) */
.list-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    margin: 8px 16px;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.15s;
}
.list-card:active { transform: scale(0.98); }
.list-card.archived { opacity: 0.6; }
.list-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}
.list-card-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-bright);
}
.list-card-count {
    font-size: 12px;
    color: var(--text-secondary);
    background: var(--bg-tertiary);
    padding: 2px 8px;
    border-radius: 10px;
}
.list-card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
    line-height: 1.4;
}
.list-card-thumbs {
    display: flex;
    gap: 6px;
    margin-top: 10px;
}
.list-thumb {
    width: 40px; height: 40px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-tertiary);
}
.list-card-badge {
    display: inline-block;
    margin-top: 8px;
    font-size: 11px;
    color: var(--text-secondary);
    background: var(--bg-tertiary);
    padding: 2px 8px;
    border-radius: 6px;
}
.list-card-date {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* List detail view */
.list-detail-actions {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.list-action-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.list-action-btn:active { background: var(--bg-tertiary); }
.list-action-btn.danger { color: var(--error); }
.list-action-btn i { width: 14px; height: 14px; }
.list-detail-desc {
    padding: 0 16px 12px;
    font-size: 13px;
    color: var(--text-secondary);
}
.list-add-items-btn {
    margin-top: 12px;
    padding: 10px 20px;
    background: var(--accent-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

/* List items */
.list-items {
    padding: 0 16px 16px;
}
.list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}
.list-item:last-child { border-bottom: none; }
.list-item-thumb {
    width: 44px; height: 44px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-tertiary);
    flex-shrink: 0;
    cursor: pointer;
}
.list-item-info {
    flex: 1;
    min-width: 0;
    cursor: pointer;
}
.list-item-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-bright);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.list-item-meta {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px;
}
.list-item-remove {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 8px;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
}
.list-item-remove:active {
    background: rgba(255,59,48,0.15);
    color: var(--error);
}
.list-item-remove i { width: 16px; height: 16px; }

/* Add to list confirm button (in modal) */
.list-add-confirm-btn {
    display: block;
    width: calc(100% - 32px);
    margin: 12px 16px;
    padding: 12px;
    background: var(--accent-primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
}
.list-add-confirm-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Add to list items (in modal) */
.add-to-list-items .link-item-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    cursor: pointer;
}
.add-to-list-items .link-item-option.selected {
    background: rgba(59, 130, 246, 0.08);
}
.add-to-list-items .result-checkbox {
    width: 20px; height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    flex-shrink: 0;
    transition: all 0.15s;
}
.add-to-list-items .result-checkbox.checked {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

/* ============================================
   BOTTOM SHEET
   ============================================ */

.bottom-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-radius: 16px 16px 0 0;
    padding: 16px;
    z-index: 1100;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    max-height: 60vh;
    overflow-y: auto;
    box-shadow: 0 -8px 30px rgba(0,0,0,0.3);
}
.bottom-sheet.active {
    transform: translateY(0);
}
.bottom-sheet-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1099;
    display: none;
}
.bottom-sheet.active ~ .bottom-sheet-backdrop {
    display: block;
}
.sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.sheet-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-bright);
}
.sheet-close {
    cursor: pointer;
    color: var(--text-secondary);
    padding: 4px;
}
.sheet-close i { width: 20px; height: 20px; }
.sheet-list-options {
    margin-bottom: 12px;
}
.sheet-list-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.15s;
}
.sheet-list-option:active {
    background: var(--bg-tertiary);
}
.sheet-list-name {
    font-size: 15px;
    color: var(--text-bright);
}
.sheet-list-count {
    font-size: 12px;
    color: var(--text-secondary);
    background: var(--bg-tertiary);
    padding: 2px 8px;
    border-radius: 10px;
}
.sheet-create-new {
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
}
.sheet-create-row {
    display: flex;
    gap: 8px;
}
.sheet-create-input {
    flex: 1;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-bright);
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}
.sheet-create-input:focus {
    border-color: var(--accent-primary);
}
.sheet-create-btn {
    background: var(--accent-primary);
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

/* List back button */
#listBackBtn {
    display: none;
    cursor: pointer;
    color: var(--text-secondary);
    margin-right: 8px;
}
#listBackBtn.visible { display: inline-flex; }
#listBackBtn i { width: 20px; height: 20px; }

/* ============================================
   MOVE PICKER (chat)
   ============================================ */

.move-picker-wrapper {
    padding: 4px 0;
}
.move-picker-prompt {
    font-size: 14px;
    color: var(--text-bright);
    margin-bottom: 10px;
    line-height: 1.4;
}
.move-picker-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.move-picker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.15s;
}
.move-picker-item:active {
    background: var(--bg-tertiary);
    border-color: var(--accent-primary);
}
.move-picker-thumb {
    width: 40px; height: 40px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-tertiary);
    flex-shrink: 0;
}
.move-picker-info { flex: 1; min-width: 0; }
.move-picker-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-bright);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.move-picker-meta {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px;
}
.move-picker-done {
    font-size: 14px;
    color: var(--success, #34d399);
    padding: 8px 0;
}

/* ============================================
   GESTURE SYSTEM
   ============================================ */

/* Swipe hints - coloured background reveal */
.swipe-hint {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.1s;
    z-index: -1;
    border-radius: 12px;
}
.swipe-hint i {
    width: 20px;
    height: 20px;
    color: #fff;
}
.swipe-hint-left {
    right: -4px;
    background: var(--error, #ef4444);
}
.swipe-hint-right {
    left: -4px;
    background: var(--accent-primary, #3b82f6);
}

/* Swiping state */
.inv-item.swiping,
.list-item.swiping {
    z-index: 10;
    background: var(--bg-secondary);
}

/* Long press visual feedback */
.inv-item {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}
.inv-item:active:not(.swiping) {
    transition: background 0.3s;
}

/* Selection mode indicator on long-pressed item */
.selection-mode .inv-item {
    transition: background 0.15s, opacity 0.15s;
}
.selection-mode .inv-item.selected {
    background: rgba(59, 130, 246, 0.08);
}

/* ============================================
   LIST ITEM REDESIGN - v4.2
   ============================================ */

/* List item body replaces old list-item-info */
.list-item-body {
    flex: 1;
    min-width: 0;
    cursor: pointer;
    padding: 2px 0;
}
.list-item-note {
    font-size: 12px;
    color: var(--accent-primary);
    margin-top: 3px;
    line-height: 1.3;
    max-height: 1.3em;
    overflow: hidden;
    transition: max-height 0.2s;
}
.list-item-note.expanded {
    max-height: 200px;
}

/* Action buttons row */
.list-item-actions-row {
    display: flex;
    gap: 2px;
    align-items: center;
    flex-shrink: 0;
}
.list-item-action-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 6px;
    border-radius: 6px;
    cursor: pointer;
}
.list-item-action-btn:active {
    background: var(--bg-tertiary);
}
.list-item-action-btn i {
    width: 16px;
    height: 16px;
}
.list-item-action-btn.danger {
    color: var(--error, #ef4444);
}

/* Note editor */
.list-item-note-editor {
    padding: 8px 10px;
    border-top: 1px solid var(--bg-tertiary);
}
.list-note-input {
    width: 100%;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--text-bright);
    padding: 8px 10px;
    font-size: 13px;
    resize: vertical;
    min-height: 40px;
    max-height: 100px;
    font-family: inherit;
}
.list-note-editor-actions {
    display: flex;
    gap: 8px;
    margin-top: 6px;
    justify-content: flex-end;
}
.list-note-save, .list-note-cancel {
    padding: 4px 14px;
    border-radius: 6px;
    border: none;
    font-size: 13px;
    cursor: pointer;
}
.list-note-save {
    background: var(--accent-primary);
    color: white;
}
.list-note-cancel {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
}

/* ============================================
   ONBOARDING HINTS
   ============================================ */

.onboarding-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.onboarding-card {
    background: var(--bg-secondary, #1e293b);
    border-radius: 16px;
    padding: 28px 24px;
    max-width: 320px;
    width: 100%;
    text-align: center;
    position: relative;
}
.onboarding-card h3 {
    color: var(--text-bright);
    font-size: 18px;
    margin: 0 0 12px;
}
.onboarding-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 20px;
}
.onboarding-hints-list {
    text-align: left;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}
.onboarding-hints-list li {
    color: var(--text-primary);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.onboarding-hints-list li:last-child {
    border-bottom: none;
}
.onboarding-hint-icon {
    font-size: 16px;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}
.onboarding-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 16px;
}
.onboarding-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-secondary);
    opacity: 0.3;
}
.onboarding-dot.active {
    opacity: 1;
    background: var(--accent-primary);
}
.onboarding-btn {
    background: var(--accent-primary);
    color: white;
    border: none;
    padding: 10px 28px;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 500;
}
.onboarding-skip {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    margin-top: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
