/* ===== CHAT CSS ===== */
/* Chat panel and message styles */

/* Chat Panel */
.chat-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 65vh;
    background: var(--bg-overlay);
    border-radius: var(--radius) var(--radius) 0 0;
    z-index: 101;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    display: flex;
    flex-direction: column;
}

.chat-panel.visible {
    transform: translateY(0);
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
}

.chat-header h3 {
    font-size: 16px;
    font-weight: 600;
}

.close-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn svg {
    width: 16px;
    height: 16px;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 150px;
    max-height: 45vh;
}

.message {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
}

.message.them {
    background: var(--surface);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.message.me {
    background: var(--accent);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.message.preview {
    opacity: 0.6;
    font-style: italic;
    border: 1px dashed var(--border);
    background: rgba(255, 255, 255, 0.05);
}

/* Typing indicator animation */
.typing-dots {
    display: inline-flex;
    gap: 3px;
    align-items: center;
}

.typing-dots::before {
    content: 'typing';
    margin-right: 2px;
}

.typing-dots span {
    display: inline-block;
    animation: typing-bounce 1.4s infinite;
    font-weight: bold;
}

.typing-dots span:nth-child(1) {
    animation-delay: 0s;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing-bounce {

    0%,
    60%,
    100% {
        opacity: 0.3;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
        transform: translateY(-3px);
    }
}

.chat-input-area {
    display: flex;
    gap: 10px;
    padding: 10px 16px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--border);
    transition: bottom 0.2s;
}

.chat-input {
    flex: 1;
    padding: 10px 14px;
    background: var(--surface);
    border: none;
    border-radius: 20px;
    color: var(--text);
    font-size: 14px;
    outline: none;
}

.chat-input::placeholder {
    color: var(--text-tertiary);
}

.chat-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--accent);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-send svg {
    width: 18px;
    height: 18px;
}

/* Quick Reply Buttons */
.quick-replies {
    display: flex;
    gap: 8px;
    padding: 8px 16px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border-bottom: 1px solid var(--border);
}

.quick-replies::-webkit-scrollbar {
    display: none;
}

.quick-reply-btn {
    flex-shrink: 0;
    padding: 8px 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.quick-reply-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.quick-reply-btn:active {
    transform: translateY(0) scale(0.95);
}

/* Filter Panel */
.filter-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    max-width: 90%;
    background: var(--bg-overlay);
    z-index: 101;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    display: flex;
    flex-direction: column;
}

.filter-panel.visible {
    transform: translateX(0);
}

.filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    padding-top: max(14px, env(safe-area-inset-top));
    border-bottom: 1px solid var(--border);
}

.filter-header h3 {
    font-size: 16px;
    font-weight: 600;
}

.filter-body {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.filter-select,
.filter-input {
    width: 100%;
    padding: 12px 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 14px;
    outline: none;
}

.filter-input::placeholder {
    color: var(--text-tertiary);
}

.filter-apply {
    width: 100%;
    padding: 14px;
    background: var(--accent);
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 16px;
}

/* ===== FILTER PANEL - PREMIUM DESIGN ===== */
#filterPanel {
    background: linear-gradient(180deg, rgba(20, 20, 28, 0.98) 0%, rgba(12, 12, 18, 0.99) 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.6);
}

#filterPanel .filter-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 20px;
}

#filterPanel .filter-header h3 {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

#filterPanel .filter-header h3::before {
    content: '🎯';
    font-size: 16px;
}

#filterPanel .filter-body {
    padding: 16px;
}

#filterPanel .filter-group {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 12px;
}

#filterPanel .filter-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

#filterPanel .filter-label .tags-count {
    color: #0a84ff;
    font-weight: 500;
}

/* Select Wrapper */
.filter-select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.filter-select-wrapper>i:first-child {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    color: #0a84ff;
    pointer-events: none;
    z-index: 1;
}

.filter-select-wrapper .select-arrow {
    position: absolute;
    right: 14px;
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

.filter-select-wrapper .filter-select {
    padding-left: 44px;
    padding-right: 40px;
    appearance: none;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-select-wrapper .filter-select:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.filter-select-wrapper .filter-select:focus {
    border-color: rgba(10, 132, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.15);
}

.filter-select-wrapper .filter-select option {
    background: #1a1a24;
    color: #fff;
    padding: 10px;
}

/* Filter Hint */
.filter-hint {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 8px;
    line-height: 1.4;
}

/* Premium Toggle for Filter */
#filterPanel .toggle {
    width: 46px;
    height: 26px;
    background: rgba(120, 120, 128, 0.32);
    border-radius: 13px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

#filterPanel .toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

#filterPanel .toggle.active {
    background: linear-gradient(135deg, #32d74b, #28a745);
}

#filterPanel .toggle.active::after {
    left: 23px;
}

/* Tags Container Premium */
#filterPanel .tags-container {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px 12px;
    min-height: 48px;
    transition: all 0.2s ease;
}

#filterPanel .tags-container:focus-within {
    border-color: rgba(10, 132, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.15);
}

#filterPanel .tags-input {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
}

#filterPanel .tags-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

#filterPanel .tag-chip {
    background: linear-gradient(135deg, #0a84ff, #0066cc);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 12px;
}

/* Filter Done Button */
.filter-done-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #32d74b, #28a745);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.filter-done-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 215, 75, 0.4);
}

.filter-done-btn i {
    width: 18px;
    height: 18px;
}

/* ===== FILTER PANEL - LIGHT THEME ===== */
[data-theme="light"] #filterPanel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 248, 252, 0.99) 100%);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] #filterPanel .filter-header {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, transparent 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] #filterPanel .filter-header h3 {
    color: #1a1a1a;
}

[data-theme="light"] #filterPanel .filter-group {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] #filterPanel .filter-label {
    color: rgba(0, 0, 0, 0.45);
}

[data-theme="light"] .filter-select-wrapper .select-arrow {
    color: rgba(0, 0, 0, 0.35);
}

[data-theme="light"] .filter-select-wrapper .filter-select {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: rgba(0, 0, 0, 0.85);
}

[data-theme="light"] .filter-select-wrapper .filter-select:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .filter-select-wrapper .filter-select option {
    background: #fff;
    color: #1a1a1a;
}

[data-theme="light"] .filter-hint {
    color: rgba(0, 0, 0, 0.4);
}

[data-theme="light"] #filterPanel .toggle {
    background: rgba(0, 0, 0, 0.12);
}

[data-theme="light"] #filterPanel .tags-container {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] #filterPanel .tags-input {
    color: rgba(0, 0, 0, 0.85);
}

[data-theme="light"] #filterPanel .tags-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

/* Tags Chip Input */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    min-height: 46px;
    transition: border-color 0.2s;
}

.tags-container:focus-within {
    border-color: var(--accent);
}

.tags-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    background: var(--accent);
    color: white;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    animation: chip-pop 0.2s ease-out;
}

.tag-chip:hover {
    background: var(--accent-hover, #0051d4);
    transform: scale(1.05);
}

.tag-chip::after {
    content: '×';
    font-size: 15px;
    font-weight: 600;
    opacity: 0.7;
    margin-left: 2px;
}

.tag-chip:hover::after {
    opacity: 1;
}

@keyframes chip-pop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.tags-input {
    flex: 1;
    min-width: 100px;
    padding: 4px 0;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 14px;
    outline: none;
}

.tags-input::placeholder {
    color: var(--text-tertiary);
}

.tags-hint {
    font-size: 11px;
    color: var(--text-tertiary);
    margin-top: 6px;
}

.tags-count {
    font-size: 11px;
    color: var(--accent);
    font-weight: 400;
}

/* Nearby Option Row */
.nearby-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.nearby-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nearby-icon {
    font-size: 16px;
}

#locationText {
    font-size: 14px;
    color: var(--text);
}

/* Minimal Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-track {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(120, 120, 128, 0.32);
    border-radius: 12px;
    transition: 0.3s;
}

.toggle-track::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.toggle-switch input:checked+.toggle-track {
    background: #32d74b;
}

.toggle-switch input:checked+.toggle-track::before {
    transform: translateX(20px);
}

/* ===== SETTINGS PANEL - PREMIUM DESIGN ===== */
#settingsPanel {
    background: linear-gradient(180deg, rgba(20, 20, 28, 0.98) 0%, rgba(12, 12, 18, 0.99) 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.6);
}

#settingsPanel .filter-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 20px;
}

#settingsPanel .filter-header h3 {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

#settingsPanel .filter-header h3::before {
    content: '⚙️';
    font-size: 16px;
}

#settingsPanel .filter-body {
    padding: 16px;
}

#settingsPanel .filter-group {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 12px;
}

#settingsPanel .filter-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
    display: block;
}

#settingsPanel .auto-row {
    gap: 12px;
}

#settingsPanel .auto-row span {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

#settingsPanel .tags-hint {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
}

#settingsPanel .tags-hint a {
    color: rgba(10, 132, 255, 0.9);
    transition: color 0.2s;
}

#settingsPanel .tags-hint a:hover {
    color: #0a84ff;
}

/* Premium Toggle */
#settingsPanel .toggle {
    width: 46px;
    height: 26px;
    background: rgba(120, 120, 128, 0.32);
    border-radius: 13px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

#settingsPanel .toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

#settingsPanel .toggle.active {
    background: linear-gradient(135deg, #32d74b, #28a745);
}

#settingsPanel .toggle.active::after {
    left: 23px;
}

/* Install Button Premium */
#settingsPanel #installBtn {
    background: linear-gradient(135deg, #0a84ff, #0066cc);
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 20px;
    border-radius: 12px;
    transition: all 0.2s ease;
    width: 100%;
}

#settingsPanel #installBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 132, 255, 0.4);
}

#settingsPanel #installBtn i {
    width: 18px;
    height: 18px;
}

/* Done Button */
#settingsPanel #settingsDone {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.2s ease;
    width: 100%;
}

#settingsPanel #settingsDone:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ===== SETTINGS PANEL - LIGHT THEME ===== */
[data-theme="light"] #settingsPanel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 248, 252, 0.99) 100%);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] #settingsPanel .filter-header {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, transparent 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] #settingsPanel .filter-header h3 {
    color: #1a1a1a;
}

[data-theme="light"] #settingsPanel .filter-group {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] #settingsPanel .filter-label {
    color: rgba(0, 0, 0, 0.45);
}

[data-theme="light"] #settingsPanel .auto-row span {
    color: rgba(0, 0, 0, 0.85);
}

[data-theme="light"] #settingsPanel .tags-hint {
    color: rgba(0, 0, 0, 0.45);
}

[data-theme="light"] #settingsPanel .toggle {
    background: rgba(0, 0, 0, 0.12);
}

[data-theme="light"] #settingsPanel .toggle::after {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] #settingsPanel #settingsDone {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: rgba(0, 0, 0, 0.85);
}

[data-theme="light"] #settingsPanel #settingsDone:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.12);
}

/* Settings Action Button */
.settings-action-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.settings-action-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.settings-action-btn i {
    width: 18px;
    height: 18px;
    color: #0a84ff;
}

.settings-action-btn i.chevron {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.3);
    width: 16px;
    height: 16px;
}

.settings-action-btn span {
    flex: 1;
    text-align: left;
}

/* Settings Row */
.settings-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.settings-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.settings-row:first-of-type {
    padding-top: 0;
}

.settings-row-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.settings-row-left i {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.5);
}

.settings-row-left span {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Settings Install Button */
.settings-install-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #0a84ff, #0066cc);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.settings-install-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 132, 255, 0.4);
}

.settings-install-btn i {
    width: 18px;
    height: 18px;
}

/* Settings About */
.settings-about {
    text-align: center;
    padding: 8px 0;
}

.settings-about .version {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.settings-about .links {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
}

.settings-about .links a {
    color: rgba(10, 132, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
}

.settings-about .links a:hover {
    color: #0a84ff;
    text-decoration: underline;
}

.settings-about .links span {
    color: rgba(255, 255, 255, 0.25);
}

/* Light Theme - Settings Elements */
[data-theme="light"] .settings-action-btn {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.85);
}

[data-theme="light"] .settings-action-btn:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .settings-action-btn i.chevron {
    color: rgba(0, 0, 0, 0.25);
}

[data-theme="light"] .settings-row {
    border-bottom-color: rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .settings-row-left i {
    color: rgba(0, 0, 0, 0.45);
}

[data-theme="light"] .settings-row-left span {
    color: rgba(0, 0, 0, 0.85);
}

[data-theme="light"] .settings-about .version {
    color: rgba(0, 0, 0, 0.45);
}

[data-theme="light"] .settings-about .links span {
    color: rgba(0, 0, 0, 0.2);
}