[data-lucide] {
    display: inline-block;
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1E9FFF;
    --primary-dark: #1890ff;
    --primary-light: #e6f7ff;
    --success: #52c41a;
    --success-light: #f6ffed;
    --warning: #faad14;
    --warning-light: #fffbe6;
    --error: #ff4d4f;
    --error-light: #fff2f0;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #f0f0f0;
    --gray-300: #d9d9d9;
    --gray-400: #bfbfbf;
    --gray-500: #8c8c8c;
    --gray-600: #595959;
    --gray-700: #434343;
    --gray-800: #262626;
    --gray-900: #141414;
    --white: #ffffff;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.03), 0 1px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px 0 rgba(0, 0, 0, 0.02);
    --shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03), 0 1px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px 0 rgba(0, 0, 0, 0.02);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background: #f8fafc;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.tech-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.tech-background svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.tech-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, transparent 24%, rgba(59, 130, 246, 0.02) 25%, rgba(59, 130, 246, 0.02) 26%, transparent 27%, transparent 74%, rgba(16, 185, 129, 0.02) 75%, rgba(16, 185, 129, 0.02) 76%, transparent 77%);
    background-size: 200px 200px, 300px 300px, 50px 50px;
    animation: techMove 20s linear infinite;
}

@keyframes techMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.08;
    animation: float 15s ease-in-out infinite;
}

.shape-1 {
    top: 10%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 0s;
}

.shape-2 {
    top: 20%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #10b981, #059669);
    border-radius: 50%;
    animation-delay: 2s;
}

.shape-3 {
    top: 60%;
    left: 5%;
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation-delay: 4s;
}

.shape-4 {
    top: 80%;
    right: 20%;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #f59e0b, #d97706);
    transform: rotate(45deg);
    border-radius: 10px;
    animation-delay: 6s;
}

.shape-5 {
    top: 40%;
    left: 80%;
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, #ef4444, #dc2626);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation-delay: 8s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.08;
    }
    25% { 
        transform: translateY(-20px) rotate(90deg) scale(1.1);
        opacity: 0.12;
    }
    50% { 
        transform: translateY(-10px) rotate(180deg) scale(0.9);
        opacity: 0.06;
    }
    75% { 
        transform: translateY(-15px) rotate(270deg) scale(1.05);
        opacity: 0.1;
    }
}

.layout {
    display: flex;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.sidebar {
    width: 320px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
    box-shadow: var(--shadow-lg);
}

.user-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
    color: var(--gray-800);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 3px solid rgba(30, 159, 255, 0.2);
    position: relative;
    z-index: 1;
}

.user-avatar [data-lucide] {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.user-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    color: var(--gray-800);
}

.user-title {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    color: var(--gray-600);
}

.user-contacts {
    display: flex;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.contact-item {
    width: 40px;
    height: 40px;
    background: rgba(30, 159, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 159, 255, 0.2);
}

.contact-item:hover {
    background: rgba(30, 159, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 159, 255, 0.2);
}

.contact-item [data-lucide] {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.ip-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.ip-card:hover {
    box-shadow: var(--shadow-md);
}

.ip-card-header {
    background: rgba(255, 255, 255, 0.8);
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ip-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-800);
    font-size: 16px;
    font-weight: 500;
}

.ip-card-title [data-lucide] {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.ip-card-body {
    padding: 15px;
    text-align: center;
}

.ip-card-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.ip-card-img:hover {
    transform: scale(1.02);
}

.ip-card-error {
    display: none;
    padding: 20px;
    color: var(--gray-500);
    font-size: 14px;
    text-align: center;
}

.ip-card-error [data-lucide] {
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
    color: var(--error);
}

.greeting-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.greeting-card:hover {
    box-shadow: var(--shadow-md);
}

.greeting-header {
    background: rgba(255, 255, 255, 0.8);
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.greeting-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-800);
    font-size: 16px;
    font-weight: 500;
}

.greeting-title [data-lucide] {
    width: 18px;
    height: 18px;
}

.greeting-body {
    padding: 20px;
    text-align: center;
}

.greeting-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.greeting-text {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--gray-800);
}

.greeting-time {
    font-size: 14px;
    color: var(--gray-600);
    opacity: 0.8;
}

.morning {
    background: linear-gradient(135deg, #fef3c7, #fbbf24);
    color: #92400e;
}

.morning .greeting-title [data-lucide] {
    color: #f59e0b;
}

.afternoon {
    background: linear-gradient(135deg, #dbeafe, #3b82f6);
    color: #1e40af;
}

.afternoon .greeting-title [data-lucide] {
    color: #3b82f6;
}

.evening {
    background: linear-gradient(135deg, #e0e7ff, #8b5cf6);
    color: #5b21b6;
}

.evening .greeting-title [data-lucide] {
    color: #8b5cf6;
}

.night {
    background: linear-gradient(135deg, #1f2937, #374151);
    color: #f9fafb;
}

.night .greeting-title [data-lucide] {
    color: #60a5fa;
}

.main-content {
    flex: 1;
    margin-left: 320px;
    padding: 40px;
    position: relative;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
}

.header h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header h1 [data-lucide] {
    width: 48px;
    height: 48px;
    color: var(--primary);
}

.header p {
    font-size: 18px;
    color: var(--gray-600);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.notice-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-lg);
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--gray-800);
}

.notice-icon {
    width: 24px;
    height: 24px;
    color: var(--warning);
}

.notice-title {
    font-size: 20px;
    font-weight: 600;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.notice-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border-left: 4px solid var(--warning);
    transition: all 0.2s ease;
}

.notice-item:hover {
    background: var(--warning-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.notice-item-icon {
    width: 18px;
    height: 18px;
    color: var(--warning);
    margin-top: 2px;
    flex-shrink: 0;
}

.notice-item-text {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
    font-weight: 400;
}

.main-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.card-header {
    padding: 32px 32px 16px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border-bottom: 1px solid var(--gray-200);
}

.card-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.card-subtitle {
    color: var(--gray-600);
    font-size: 16px;
    font-weight: 400;
}

.card-body {
    padding: 32px;
}

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

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 14px;
}

.form-label-icon {
    width: 16px;
    height: 16px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 16px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    color: var(--gray-900);
    font-weight: 400;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-input::placeholder {
    color: var(--gray-400);
    font-weight: 400;
}

.format-selector {
    display: flex;
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 4px;
    gap: 4px;
}

.format-option {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: calc(var(--radius) - 2px);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.format-option.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.format-option:hover:not(.active) {
    color: var(--gray-700);
    background: rgba(255, 255, 255, 0.7);
}

.format-icon {
    width: 16px;
    height: 16px;
}

.btn-group {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
    transform: translateY(-1px);
}

.btn-icon {
    width: 18px;
    height: 18px;
}

.loading {
    display: none;
    text-align: center;
    padding: 48px 32px;
}

.loading.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-200);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 24px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    margin-top: 16px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border: 1px solid var(--primary);
}

.status-icon {
    width: 16px;
    height: 16px;
}

.result-section {
    display: none;
    margin-top: 32px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.result-section.show {
    display: block;
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.result-header {
    padding: 24px 32px;
    background: linear-gradient(135deg, var(--success-light) 0%, var(--white) 100%);
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 12px;
}

.result-header.error {
    background: linear-gradient(135deg, var(--error-light) 0%, var(--white) 100%);
}

.result-header-icon {
    width: 24px;
    height: 24px;
    color: var(--success);
}

.result-header.error .result-header-icon {
    color: var(--error);
}

.result-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
}

.result-content {
    padding: 32px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
    max-height: 400px;
    overflow-y: auto;
    background: var(--gray-50);
    color: var(--gray-800);
    word-break: break-all;
}

.result-actions {
    padding: 24px 32px;
    background: var(--white);
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-download {
    background: var(--success);
    color: var(--white);
}

.btn-download:hover {
    background: #389e0d;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-copy {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-copy:hover {
    background: var(--primary-light);
}

.btn-copy.copied {
    background: var(--success);
    color: var(--white);
    border-color: var(--success);
}

.action-icon {
    width: 16px;
    height: 16px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.feature {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.feature-icon [data-lucide] {
    width: 32px;
    height: 32px;
}

.feature h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.feature p {
    color: var(--gray-600);
    line-height: 1.6;
    font-weight: 400;
}

.toast {
    position: fixed;
    top: 32px;
    right: 32px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--gray-200);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 400px;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left: 4px solid var(--success);
}

.toast.error {
    border-left: 4px solid var(--error);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-icon {
    width: 20px;
    height: 20px;
}

.toast.success .toast-icon {
    color: var(--success);
}

.toast.error .toast-icon {
    color: var(--error);
}

.toast-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-900);
}

.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 200;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 12px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    color: var(--gray-700);
}

.mobile-menu-btn [data-lucide] {
    width: 20px;
    height: 20px;
}

@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 20px;
    }

    .header h1 {
        font-size: 36px;
        flex-direction: column;
        gap: 12px;
    }

    .card-header,
    .card-body {
        padding: 24px;
    }

    .btn-group {
        flex-direction: column;
    }

    .result-actions {
        flex-direction: column;
    }

    .notice-grid {
        grid-template-columns: 1fr;
    }

    .format-selector {
        flex-direction: column;
    }

    .toast {
        top: 16px;
        right: 16px;
        left: 16px;
        max-width: none;
    }

    .sidebar {
        width: 100%;
        padding: 20px;
    }

    .user-contacts {
        gap: 8px;
    }

    .contact-item {
        width: 36px;
        height: 36px;
    }
}

.result-content::-webkit-scrollbar,
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.result-content::-webkit-scrollbar-track,
.sidebar::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 3px;
}

.result-content::-webkit-scrollbar-thumb,
.sidebar::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 3px;
}

.result-content::-webkit-scrollbar-thumb:hover,
.sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}
