/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ヘッダー */
.header {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #374151;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-image {
    height: 32px;
    width: auto;
    transition: opacity 0.2s ease;
}

.logo-image:hover {
    opacity: 0.8;
}

.logo h1 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.025em;
    margin: 0;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #d1d5db;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* ボタンスタイル */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border: 2px solid #10b981;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 28px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

/* Sign Inボタン専用スタイル */
.signin-button {
    position: relative;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border: 2px solid #10b981;
    font-weight: 700;
    font-size: 18px;
    padding: 18px 32px;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    animation: pulse 2s infinite;
    overflow: hidden;
}

.signin-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.signin-button:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border-color: #059669;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    animation: none;
}

.signin-button:hover::before {
    left: 100%;
}

.signin-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.button-text {
    margin-right: 8px;
    font-weight: 700;
}

.button-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.signin-button:hover .button-icon {
    transform: translateX(4px);
}

/* パルスアニメーション */
@keyframes pulse {
    0% {
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
    }
    100% {
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    }
}

.btn-outline {
    background-color: transparent;
    color: #d1d5db;
    border-color: #4b5563;
}

.btn-outline:hover {
    background-color: #374151;
    color: #ffffff;
    border-color: #6b7280;
}

.btn-full {
    width: 100%;
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 8px;
}

/* ヒーローセクション */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* メインコンテンツ */
.main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 40px;
}

/* ログインカード */
.login-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid #374151;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4, #10b981);
    background-size: 300% 100%;
    animation: shimmer 4s infinite;
    border-radius: 20px 20px 0 0;
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-header h1 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.login-header p {
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.9;
}

/* フォーム */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: #d1d5db;
    font-size: 14px;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 12px;
    font-size: 16px;
    z-index: 2;
    pointer-events: none;
}

.form-group input {
    padding: 12px 12px 12px 40px;
    border: 1px solid #4b5563;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #2d2d2d;
    color: #ffffff;
    width: 100%;
}

.password-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    z-index: 2;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.password-toggle:hover {
    background-color: #374151;
}

.form-group input:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder {
    color: #9ca3af;
    font-style: italic;
}

/* フォームオプション */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 0;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #d1d5db;
}

.checkbox-container input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #ffffff;
}

.forgot-password {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.forgot-password:hover {
    color: #d1d5db;
}

/* 区切り線 */
.divider {
    position: relative;
    text-align: center;
    margin: 20px 0 16px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #4b5563;
}

.divider-text {
    background-color: #1a1a1a;
    color: #9ca3af;
    padding: 0 16px;
    font-size: 14px;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* Googleログインボタン */

/* Googleログインボタン（フォールバック用） */
.btn-google {
    background: #ffffff;
    color: #1a1a1a;
    border: 1px solid #dadce0;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    min-height: 48px;
}

.btn-google:hover {
    background: #f8f9fa;
    border-color: #dadce0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.btn-google:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.google-icon {
    font-size: 18px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* 通知スタイル */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 8px;
    font-weight: 500;
    z-index: 1000;
    animation: slideInRight 0.3s ease-out;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.notification-success {
    background-color: rgba(16, 185, 129, 0.9);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #ffffff;
}

.notification-error {
    background-color: rgba(239, 68, 68, 0.9);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ffffff;
}

.notification-icon {
    font-size: 18px;
}

.notification-message {
    flex: 1;
}

/* アニメーション */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ログインオプション */
.login-options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #4b5563;
}

.login-link,
.manual-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.login-link:hover,
.manual-link:hover {
    color: #d1d5db;
    background-color: rgba(255, 255, 255, 0.1);
}

/* ログインフッター */
.login-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #4b5563;
}

.login-footer p {
    color: #d1d5db;
    font-size: 14px;
}

.signup-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.signup-link:hover {
    color: #d1d5db;
}

/* フィーチャープレビュー */
.features-preview {
    padding: 40px 0;
}

.features-preview h2 {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 32px;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #4b5563;
    transition: all 0.2s ease;
}

.feature-item:hover {
    border-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2d2d2d;
    border-radius: 8px;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.feature-content p {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.5;
}

/* フッター */
.footer {
    background-color: #111111;
    border-top: 1px solid #4b5563;
    padding: 32px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copyright p {
    color: #d1d5db;
    font-size: 14px;
}

/* ウェルカム機能のスタイル */
.welcome-success {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.success-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 500px;
    margin: 20px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.success-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #059669;
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 600;
}

.success-content p {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.success-actions {
    margin-top: 24px;
}

/* フィールドエラーのスタイル */
.field-error {
    color: #ef4444;
    font-size: 14px;
    margin-top: 8px;
    font-weight: 500;
}

/* ログインフォームのアニメーション */
.login-card {
    transition: all 0.6s ease;
}

/* ボタンのローディング状態 */
.signin-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.signin-button:disabled .button-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header-content {
        padding: 12px 16px;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .nav-list {
        display: none;
    }
    
    .header-actions {
        order: -1;
        width: 100%;
        justify-content: center;
        margin-bottom: 8px;
    }
    
    .hero {
        padding: 60px 0 40px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .login-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 20px 0;
    }
    
    .login-card {
        padding: 24px;
    }
    
    .login-header h1 {
        font-size: 24px;
    }
    
    .features-preview h2 {
        font-size: 24px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .haichat-intro {
        padding: 32px 24px;
        margin: 20px 0;
        grid-column: 1 / -1; /* モバイルでも全幅を使用 */
    }
    
    
    .intro-content h2 {
        font-size: 1.8rem;
    }
    
    .intro-description {
        font-size: 1rem;
        max-width: 100%; /* モバイルでは全幅を使用 */
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .signin-button {
        padding: 16px 28px;
        font-size: 17px;
    }
    
    .login-options {
        flex-direction: column;
        gap: 16px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #4b5563;
    }
    
    .login-link,
    .manual-link {
        padding: 12px 16px;
        font-size: 16px;
        font-weight: 600;
        text-align: center;
        border-radius: 8px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
        border: 2px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
    }
    
    .login-link:hover,
    .manual-link:hover {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
        border-color: #10b981;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }
    
    .login-link:active,
    .manual-link:active {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    
    .link-icon {
        font-size: 18px;
        margin-right: 8px;
        display: inline-block;
    }
    
    .link-text {
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .header-actions {
        gap: 8px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .signin-button {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .login-options {
        gap: 12px;
        margin-top: 16px;
        padding-top: 16px;
    }
    
    .login-link,
    .manual-link {
        padding: 10px 14px;
        font-size: 15px;
        min-height: 44px;
        color: #ffffff;
    }
    
    .link-icon {
        font-size: 16px;
        margin-right: 6px;
    }
    
    .hero {
        padding: 50px 0 30px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .login-card {
        padding: 20px;
        margin: 0 8px;
        border-radius: 16px;
    }
    
    .login-header {
        padding: 16px;
        margin-bottom: 24px;
    }
    
    .login-header h1 {
        font-size: 22px;
    }
    
    .haichat-intro {
        padding: 24px 20px;
        margin: 16px 0;
        grid-column: 1 / -1; /* 小画面でも全幅を使用 */
    }
    
    /* Googleログインボタン モバイル対応 */
    .btn-google {
        min-height: 44px;
        font-size: 14px;
    }
    
    .google-icon {
        font-size: 16px;
        width: 18px;
        height: 18px;
    }
    
    
    .intro-content h2 {
        font-size: 1.6rem;
    }
    
    .intro-description {
        font-size: 0.95rem;
        max-width: 100%; /* 小画面では全幅を使用 */
    }
    
    .feature-item {
        padding: 16px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* HaiChat紹介セクション */
.haichat-intro {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    border: 1px solid #4b5563;
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: both;
    transition: all 0.3s ease;
    grid-column: 1 / -1; /* グリッドの全幅を使用 */
    max-width: none; /* 最大幅制限を解除 */
}

.haichat-intro:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: #ffffff;
}

.intro-content {
    max-width: 1000px; /* 最大幅を拡大 */
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}

.intro-description {
    font-size: 1.1rem;
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 24px;
    text-align: left;
    max-width: 900px; /* 説明文の最大幅を設定 */
    margin-left: auto;
    margin-right: auto;
}

.intro-cta {
    text-align: center;
}

.intro-cta p {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.login-card,
.features-preview {
    animation: fadeInUp 0.6s ease-out;
}

/* フォーカス状態の改善 */
*:focus {
    outline: 2px solid #1a1a1a;
    outline-offset: 2px;
}

/* スクロールバーのスタイリング */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}