:root {
    --primary-color: #0099ff;
    --primary-hover: #007acc;
    --success-color: #52c41a;
    --warning-color: #faad14;
    --error-color: #ff4d4f;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-tertiary: #999999;
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-tertiary: #fafafa;
    --border-color: #e8e8e8;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --blur-amount: 20px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --transition: all 0.25s ease-in-out;
}

[data-theme="dark"] {
    --primary-color: #177ddc;
    --primary-hover: #095cb5;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-tertiary: #808080;
    --bg-primary: #141414;
    --bg-secondary: #1f1f1f;
    --bg-tertiary: #262626;
    --border-color: #303030;
    --glass-bg: rgba(30, 30, 30, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.glass-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    border-radius: var(--radius-lg);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
}

.btn-danger {
    background: var(--error-color);
}

.btn-danger:hover {
    background: #ff7875;
}

.btn-success {
    background: var(--success-color);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

.remember-group {
    flex-direction: row;
    align-items: center;
}

.remember-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.remember-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.remember-label span {
    font-size: 14px;
    color: var(--text-secondary);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-icon {
    padding: 8px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 14px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    transition: var(--transition);
    color: var(--text-primary);
}

.input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 153, 255, 0.1);
}

.input::placeholder {
    color: var(--text-tertiary);
}

textarea.input {
    resize: vertical;
    min-height: 80px;
}

.card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-md);
}

.avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-secondary);
    box-shadow: var(--shadow-sm);
}

.avatar-sm {
    width: 32px;
    height: 32px;
}

.avatar-md {
    width: 48px;
    height: 48px;
}

.avatar-lg {
    width: 64px;
    height: 64px;
}

.avatar-xl {
    width: 96px;
    height: 96px;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 500;
    background: var(--primary-color);
    color: white;
}

.badge-danger {
    background: var(--error-color);
}

.badge-success {
    background: var(--success-color);
}

.badge-warning {
    background: var(--warning-color);
}

.icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-sm {
    width: 16px;
    height: 16px;
}

.icon-lg {
    width: 24px;
    height: 24px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.2s ease-in-out;
}

.modal {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 24px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.3s ease-in-out;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

.modal-body {
    margin-bottom: 20px;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    animation: slideInRight 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-success {
    border-left: 4px solid var(--success-color);
}

.toast-error {
    border-left: 4px solid var(--error-color);
}

.toast-warning {
    border-left: 4px solid var(--warning-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 160px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
}

.dropdown.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-primary);
}

.dropdown-item:hover {
    background: rgba(0, 153, 255, 0.1);
}

.dropdown-item-danger {
    color: var(--error-color);
}

.dropdown-item-danger:hover {
    background: rgba(255, 77, 79, 0.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-secondary {
    color: var(--text-secondary);
}

.text-tertiary {
    color: var(--text-tertiary);
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.ml-1 { margin-left: 8px; }
.mr-1 { margin-right: 8px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-col {
    flex-direction: column;
}

.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.collection-item {
    padding: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
}

.collection-item-content {
    margin-bottom: 4px;
}

.collection-item-time {
    font-size: 12px;
    color: var(--text-tertiary);
}

.search-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-input-wrapper {
    position: relative;
}

.search-tabs {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 4px;
}

.search-tab {
    flex: 1;
    padding: 8px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.search-tab.active {
    background: var(--primary-color);
    color: white;
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.7);
}

.search-result-info {
    flex: 1;
}

.search-result-name {
    font-weight: 500;
    margin-bottom: 4px;
}

.search-result-detail {
    font-size: 12px;
    color: var(--text-secondary);
}

.search-result-action {
    flex-shrink: 0;
}

.user-profile {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.user-profile-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.user-profile-id {
    font-size: 12px;
    color: var(--text-tertiary);
}

.user-profile-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.group-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.group-info-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.group-info-member-count {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.group-info-announcement {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
}

.group-info-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.group-manage {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.group-manage-header h4 {
    font-size: 16px;
    font-weight: 600;
}

.group-manage-members {
    max-height: 400px;
    overflow-y: auto;
}

.group-manage-member {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
}

.group-manage-member-info {
    flex: 1;
}

.group-manage-member-name {
    font-weight: 500;
    margin-bottom: 4px;
}

.group-manage-member-role {
    font-size: 12px;
    color: var(--text-secondary);
}

.group-manage-member-actions {
    display: flex;
    gap: 8px;
}

.friend-request-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
}

.friend-request-info {
    flex: 1;
}

.friend-request-name {
    font-weight: 500;
    margin-bottom: 4px;
}

.friend-request-message {
    font-size: 13px;
    color: var(--text-secondary);
}

.friend-request-actions {
    display: flex;
    gap: 8px;
}

.btn-accept {
    background: var(--success-color);
}

.btn-accept:hover {
    background: #52c41a;
}

.btn-reject {
    background: var(--error-color);
}

.btn-reject:hover {
    background: #ff7875;
}

.toast-info {
    border-left: 4px solid var(--primary-color);
}

.settings-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.settings-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.settings-group-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.settings-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.settings-item label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.settings-item select,
.settings-item input[type="file"] {
    width: 100%;
}

.settings-item input[type="range"] {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    background: var(--border-color);
    border-radius: 3px;
    outline: none;
}

.settings-item input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.settings-item input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    border: none;
}

.settings-avatar-item {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 16px !important;
}

.settings-avatar-preview {
    flex-shrink: 0;
}

.settings-avatar-preview img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--bg-primary);
    box-shadow: var(--shadow-md);
}

.settings-avatar-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.settings-avatar-actions .file-upload-area {
    min-height: 80px;
}

.file-upload-area {
    position: relative;
    width: 100%;
    min-height: 120px;
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--bg-tertiary);
}

.file-upload-area:hover {
    border-color: var(--primary-color);
    background: rgba(0, 153, 255, 0.05);
}

.settings-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.settings-tab-btn {
    flex: 1;
    padding: 10px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.settings-tab-btn:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.settings-tab-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.settings-content {
    max-height: 400px;
    overflow-y: auto;
}

.settings-tab-content {
    display: none;
}

.settings-tab-content.active {
    display: block;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-tertiary);
}

::-webkit-scrollbar-corner {
    background: transparent;
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) transparent;
}

*:hover {
    scrollbar-color: var(--text-tertiary) transparent;
}

.file-upload-area.drag-over {
    border-color: var(--primary-color);
    background: rgba(0, 153, 255, 0.1);
    transform: scale(1.02);
}

.register-avatar-section {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.register-avatar-preview {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-color);
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-avatar-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.register-avatar-placeholder {
    font-size: 32px;
    font-weight: bold;
    color: var(--text-tertiary);
}

.register-avatar-upload {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.register-avatar-upload .file-input {
    display: none;
}

.file-upload-area.drag-over {
    border-color: var(--primary-color);
    background: rgba(0, 153, 255, 0.1);
    transform: scale(1.02);
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    pointer-events: none;
}

.media-gallery-modal {
    max-width: 90vw;
    max-height: 90vh;
    background: transparent;
    box-shadow: none;
}

.media-gallery {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.media-gallery-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.media-gallery-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.media-gallery-prev,
.media-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    z-index: 10;
}

.media-gallery-prev {
    left: -60px;
}

.media-gallery-next {
    right: -60px;
}

.media-gallery-prev:hover:not(:disabled),
.media-gallery-next:hover:not(:disabled) {
    background: rgba(0, 0, 0, 0.7);
}

.media-gallery-prev:disabled,
.media-gallery-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.media-gallery-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 80vh;
}

.media-gallery-media {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.media-gallery-counter {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 12px;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .media-gallery-prev {
        left: -40px;
    }
    
    .media-gallery-next {
        right: -40px;
    }
    
    .media-gallery-prev,
    .media-gallery-next {
        width: 40px;
        height: 40px;
    }
    
    .media-gallery-close {
        top: -35px;
        width: 32px;
        height: 32px;
    }
}

.file-upload-icon {
    width: 48px;
    height: 48px;
    color: var(--text-tertiary);
}

.file-upload-text {
    text-align: center;
}

.file-upload-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.file-upload-subtitle {
    font-size: 12px;
    color: var(--text-tertiary);
}

.file-preview {
    position: relative;
    margin-top: 12px;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: none;
}

.file-preview-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.file-preview-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.file-preview-remove:hover {
    background: var(--error-color);
}

.file-preview-remove .icon {
    color: white;
    width: 16px;
    height: 16px;
}

.range-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.range-wrapper input[type="range"] {
    flex: 1;
}

.range-value {
    min-width: 50px;
    text-align: right;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}
