:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e1e4e8;
    --text-primary: #050505;
    --text-secondary: #4b4b4b;
    --accent: #2383e2;
    --accent-hover: #1e70c1;
    --border: #e1e4e8;
    --sidebar-width: 260px;
    --hub-sidebar-width: 72px;
}

/* Left Panel Layout */
.left-panel {
    display: flex;
    flex-direction: column;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border);
    width: calc(var(--hub-sidebar-width) + var(--sidebar-width));
    min-width: calc(var(--hub-sidebar-width) + var(--sidebar-width));
    font-family: "Quantico", sans-serif;
}

.left-panel.theme-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 245, 255, 0.7));
}

.left-panel.theme-unicorn {
    background: linear-gradient(135deg,
            color-mix(in srgb, var(--unicorn-color, #9333ea) 85%, black),
            color-mix(in srgb, var(--unicorn-color, #9333ea) 60%, black));
}

.left-panel-header {
    display: flex;
    align-items: center;
    padding: 8px;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.05);
}

.theme-unicorn .left-panel-header {
    background: rgba(0, 0, 0, 0.2);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.logo-box {
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    align-items: baseline;
    font-family: "Iceland", sans-serif;
    letter-spacing: 1px;
}

.logo-k {
    color: white;
    font-size: 2.2rem;
    font-weight: 400;
}

.logo-yst {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.8rem;
    font-weight: 400;
    margin-left: -2px;
}

.server-selector-wrapper {
    flex: 1;
    position: relative;
}

.server-selector-btn {
    width: 100%;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.server-selector-btn:hover {
    background: rgba(0, 0, 0, 0.08);
}

.theme-unicorn .server-selector-btn {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.theme-unicorn .server-selector-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.server-selector-arrow {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.theme-unicorn .server-selector-arrow {
    color: rgba(255, 255, 255, 0.7);
}

.server-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    overflow: hidden;
}

.server-dropdown-item {
    padding: 10px 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: background 0.15s;
}

.server-dropdown-item:hover {
    background: var(--bg-tertiary);
}

.server-dropdown-item.active {
    background: rgba(35, 131, 226, 0.1);
}

.server-dropdown-item.manage {
    flex-direction: row;
    color: var(--accent);
    font-weight: 500;
}

.server-item-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.server-item-host {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-family: monospace;
}

.server-dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0;
}

.dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
}

/* Sidebar Tabs */
.sidebar-tabs {
    display: flex;
    padding: 0 8px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.02);
}

.theme-unicorn .sidebar-tabs {
    background: rgba(0, 0, 0, 0.1);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.sidebar-tab {
    flex: 1;
    padding: 12px 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.sidebar-tab:hover:not(.disabled) {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.03);
}

.sidebar-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.sidebar-tab.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.theme-unicorn .sidebar-tab {
    color: rgba(255, 255, 255, 0.6);
}

.theme-unicorn .sidebar-tab:hover:not(.disabled) {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.theme-unicorn .sidebar-tab.active {
    color: white;
    border-bottom-color: white;
}

/* Left Panel Content */
.left-panel-content {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.lib-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-left: 1px solid var(--border);
}

.theme-unicorn .lib-sidebar {
    border-left-color: rgba(255, 255, 255, 0.1);
}

/* Onboarding */
.onboarding-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.onboarding-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.onboarding-logo {
    font-size: 3rem;
    margin-bottom: 24px;
}

.onboarding-card h2 {
    margin-bottom: 12px;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.onboarding-card p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.setup-section {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    padding: 24px;
    text-align: left;
    margin-bottom: 20px;
}

.setup-section h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.setup-section .desc {
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.onboarding-btn {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.onboarding-btn:hover:not(:disabled) {
    background: var(--bg-tertiary);
}

.onboarding-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.onboarding-btn.primary {
    background: var(--accent);
    color: white;
    border: none;
}

.onboarding-btn.primary:hover {
    background: var(--accent-hover);
}

.divider {
    margin: 24px 0;
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
    margin: 0 16px;
}

.seed-input {
    width: 100%;
    height: 80px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    font-family: inherit;
    font-size: 0.95rem;
    margin-bottom: 20px;
    resize: none;
    background: white;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.seed-phrase-display {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--accent);
    margin: 24px 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    word-spacing: 12px;
}

.warning-box {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    padding: 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    margin-bottom: 24px;
    text-align: left;
}

.input-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.profile-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 12px;
    background: white;
    transition: border-color 0.2s;
}

.profile-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(35, 131, 226, 0.1);
}

.notice {
    font-size: 0.8rem !important;
    margin-top: 8px;
}

.notice span {
    font-family: monospace;
    color: var(--accent);
    font-weight: 600;
}

/* Theme Unicorn Overrides */
.theme-unicorn .settings-btn {
    color: rgba(255, 255, 255, 0.9);
}

.theme-unicorn .settings-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.footer-actions {
    display: flex;
    gap: 8px;
    width: 100%;
    position: relative;
    font-family: "Quantico", sans-serif;
}

.theme-menu {
    position: absolute;
    bottom: 50px;
    left: 0;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 6px;
    min-width: 160px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.theme-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-primary);
    transition: background 0.2s;
}

.theme-menu-item:hover {
    background: var(--bg-tertiary);
}

.theme-menu-item.active {
    background: var(--bg-tertiary);
    font-weight: 500;
    color: var(--accent);
}

.theme-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.modern-dot {
    background: #60a5fa;
}

.unicorn-dot {
    background: var(--unicorn-color, #9333ea);
}

.theme-color-picker-container {
    padding: 12px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-color-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.theme-color-picker {
    width: 40px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    background: transparent;
}

.menu-overlay-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: transparent;
}

.theme-toggle-btn {
    background: #1616160d;
    border: none;
    border-radius: 6px;
    padding: 10px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}

.theme-toggle-btn:hover {
    background: var(--border);
    color: var(--text-primary);
    transform: scale(1.05);
}

/* Remove special glass background for toggle button to keep it consistent */
/* .glass-theme .theme-toggle-btn { ... } removed */


* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    /* color: var(--text-primary); */
    line-height: 1.6;
}

.kyst-app {
    display: flex;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.app-background-layer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: center;
    transition: background-image 0.3s ease, background-blend-mode 0.3s ease;
    pointer-events: none;
}



@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateX(-4px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hub-settings-btn {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 0.7rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
}

.hub-item:hover .hub-settings-btn {
    display: flex;
}



/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 480px;
    animation: slideUp 0.3s ease;
}

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

.modal-header h2 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}

.modal-close-btn:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-top: 1px solid var(--border);
}

.footer-right {
    display: flex;
    gap: 12px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.9rem;
    background: var(--bg-primary);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background: var(--accent-hover);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--border);
}

.btn-danger {
    background: #f87171;
    color: white;
}

.btn-danger:hover {
    background: #ef4444;
}

.sidebar-content {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.new-doc-btn {
    width: 100%;
    padding: 10px 16px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    margin-bottom: 16px;
    transition: background 0.2s;
}

.new-doc-btn:hover {
    background: var(--accent-hover);
}

.doc-tree {
    display: flex;
    flex-direction: column;
    gap: 2px;
}



.sidebar-footer {
    padding: 12px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.theme-unicorn .sidebar-footer {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.user-profile-section {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    margin-bottom: 8px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 10px;
    transition: background 0.2s;
}

.user-profile-section:hover {
    background: rgba(0, 0, 0, 0.06);
}

.theme-unicorn .user-profile-section {
    background: rgba(255, 255, 255, 0.1);
}

.theme-unicorn .user-profile-section:hover {
    background: rgba(255, 255, 255, 0.15);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-tertiary);
    flex-shrink: 0;
    border: 2px solid var(--accent);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder-small {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.user-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.user-nickname {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.theme-unicorn .user-nickname {
    color: white;
}

.user-status-text {
    font-size: 0.75rem;
    color: #4ade80;
    display: flex;
    align-items: center;
    gap: 4px;
}

.user-status-text::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
}

.settings-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
    font-family: "Quantico", sans-serif !important;
}

.settings-btn:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.settings-btn .icon {
    font-size: 1.1rem;
}

.main-content {
    flex: 1;
    background-color: #f7f7f7;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.status-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.status-dot.connected {
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

.status-dot.connecting {
    background: #fbbf24;
    animation: pulse 1s infinite;
}

.status-dot.disconnected {
    background: #f87171;
}

.status-dot.pending {
    background: #fbbf24;
    animation: pulse 1s infinite;
}

.status-text {
    color: var(--text-secondary);
}

/* Users Panel - Discord Style */
.users-panel {
    width: 240px;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: width 0.2s ease;
    font-family: "Quantico", sans-serif;
}

.users-panel.collapsed {
    width: 48px;
}

.users-panel-header {
    padding: 6px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    min-height: 40px;
    background-color: #e5e5e5;
}

.users-panel-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.users-panel-title-collapsed {
    font-size: 1.2rem;
}

.users-count {
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 8px;
}

.users-panel-toggle {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.users-panel-toggle:hover {
    background: var(--bg-tertiary);
}

.users-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px;
}

.users-section {
    margin-bottom: 16px;
}

.users-section-header {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 8px 8px 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.section-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.section-dot.online {
    background: #4ade80;
}

.section-dot.offline {
    background: #9ca3af;
}

.user-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s;
}

.user-item:hover {
    background: var(--bg-tertiary);
}

.user-item-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-tertiary);
    position: relative;
    flex-shrink: 0;
}

.user-item-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder-tiny {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: white;
    font-weight: 600;
    font-size: 0.75rem;
}

.status-indicator-dot {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--bg-secondary);
}

.status-indicator-dot.online {
    background: #4ade80;
}

.status-indicator-dot.offline {
    background: #9ca3af;
}

.user-item-name {
    font-size: 0.9rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-item.offline {
    opacity: 0.6;
}

.user-item.offline .user-item-name {
    color: var(--text-secondary);
}

.users-loading {
    padding: 20px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Settings Modal Specifics */
.bg-edit {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-secondary);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.bg-preview-small {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--border);
    overflow: hidden;
}

.bg-controls-vertical {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.settings-slider {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: var(--bg-tertiary);
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
}

.settings-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.settings-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}