* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

button,
a,
.nav-item,
.dropdown-item,
.theme-option,
.model-option,
.model-selector,
.logo,
.mobile-menu-btn,
.sidebar-overlay,
.fa-compress-alt,
[onclick] {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input,
textarea {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --vh: 1vh;
    --safe-area-inset-top: env(safe-area-inset-top, 0px);
    --safe-area-inset-right: env(safe-area-inset-right, 0px);
    --safe-area-inset-bottom: env(safe-area-inset-bottom, 0px);
    --safe-area-inset-left: env(safe-area-inset-left, 0px);
}

.hidden {
    display: none;
}

@supports (padding: max(0px)) {
    body {
        padding-left: var(--safe-area-inset-left);
        padding-right: var(--safe-area-inset-right);
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
    overflow: hidden;
    height: 100vh;
    height: 100dvh;
    height: 100vh;
    position: fixed;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

.container {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.container.popup-open {
    overflow: visible;
}

.sidebar {
    width: 240px;
    background-color: #f7f7f8;
    /* border-right: 1px solid #e5e5e5; */
    display: flex;
    flex-direction: column;
    height: 100vh;
    transition: width 0.3s ease;
}

.sidebar.collapsed {
    width: 60px;
}

.sidebar-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 18px;
    border-bottom: 1px solid #ececf1;
    transition: padding 0.3s ease;
    flex-shrink: 0;
}

.sidebar.collapsed .sidebar-header {
    padding: 20px 12px;
    justify-content: center;
}

.sidebar-header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #202123;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-header .logo .icon {
    width: 20px;
    height: 20px;
    vertical-align: top;
}

.sidebar-header .logo .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sidebar.collapsed .sidebar-header .logo {
    display: none;
}

.sidebar-header .logo i {
    font-size: 12px;
}

.sidebar-header .header-right {
    display: flex;
    align-items: center;
}

.sidebar-header .header-right i {
    color: #4b5563;
    font-size: 14px;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    padding: 8px 0;
    margin-top: 4px;

    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.dropdown-menu.show {
    display: block;
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    color: #333333;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
    min-height: 44px;
}

.dropdown-item:hover,
.dropdown-item:active {
    background-color: #f5f5f5;
}

@media (hover: none) and (pointer: coarse) {
    .dropdown-item:active {
        background-color: #e5e5e5;
    }
}

.dropdown-item i {
    display: flex;
    width: 16px;
    font-size: 14px;
    color: #666666;
    align-items: center;
    justify-content: center;
}

.dropdown-item .fab.fa-discord {
    color: #5865f2;
}

.dropdown-divider {
    height: 1px;
    background-color: #e5e5e5;
    margin: 4px 0;
}

.dropdown-theme {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    color: #333333;
    font-size: 14px;
}

.theme-selector {
    display: flex;
    background-color: #f5f5f5;
    border-radius: 6px;
    padding: 2px;
}

.theme-option {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #666666;
    font-size: 12px;

    min-width: 44px;
    min-height: 44px;
}

.theme-option.active {
    background-color: #ffffff;
    color: #333333;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.theme-option:hover:not(.active),
.theme-option:active:not(.active) {
    background-color: #e5e5e5;
}

@media (hover: none) and (pointer: coarse) {
    .theme-option:active:not(.active) {
        background-color: #d5d5d5;
    }
}

.nav-menu {
    padding: 8px 0;
    flex-shrink: 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 18px;
    color: #374151;
    cursor: pointer;
    font-weight: 500;
    transition: padding 0.3s ease;
    min-height: 44px;
    font-size: 14px;
}

.sidebar.collapsed .nav-item {
    padding: 12px;
    justify-content: center;
}

.nav-item:hover,
.nav-item:active {
    background-color: #f5f5f5;
}

@media (hover: none) and (pointer: coarse) {
    .nav-item:active {
        background-color: #e5e5e5;
    }
}

.nav-item i {
    font-size: 16px;
    width: 20px;
}

.chat-history {
    flex: 1;
    padding: 0 24px;
    overflow-y: auto;
}

.history-section {
    margin-bottom: 24px;
}

.history-title {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    padding-left: 8px;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 8px 8px 8px 0;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 4px;
}

.history-item:hover {
    background-color: #f5f5f5;
}

.history-item.active {
    background-color: #eee;
    border: 1px solid #eee;
    border-radius: 3px;
}

.history-icon {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 10px;
    color: #ffffff;
    flex-shrink: 0;
}

.history-icon i {
    display: inline-block;
    width: 3px;
    height: 3px;
    background-color: #ddd;
    border-radius: 3px;
}

.battle-icon {
    background-color: #dc2626;
    color: #ffffff;
}

.battle-icon i {
    font-size: 10px;
}

.history-icons-dual {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

.history-icons-dual .history-icon {
    width: 18px;
    height: 18px;
    font-size: 9px;
    position: relative;
}

.history-icons-dual .history-icon:first-child {
    z-index: 2;
}

.history-icons-dual .history-icon:last-child {
    margin-left: -4px;
    z-index: 1;
}

.history-content {
    flex: 1;
    min-width: 0;
}

.history-question {
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.history-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #9ca3af;
}

.history-time {
    font-weight: 500;
}

.history-model {
    background-color: #f3f4f6;
    color: #6b7280;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
}

.sidebar-bottom {
    margin-top: auto;
    padding: 20px 20px;
    border-top: 1px solid #e5e5e5;
    transition: padding 0.3s ease;
    flex-shrink: 0;
}

.sidebar.collapsed .sidebar-bottom {
    padding: 20px 12px;
}

.footer-links {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.footer-links li {
    color: #9ca3af;
    text-decoration: none;
    font-size: 10px;
    display: block;
    cursor: pointer;
}

.footer-links li:hover {
    color: #666666;
}

.chat-history {
    padding: 0 10px;
}

.history-question {
    font-size: 13px;
}

.history-meta {
    font-size: 10px;
}

.history-model {
    font-size: 9px;
    padding: 1px 4px;
}

.history-icons-dual .history-icon {
    width: 16px;
    height: 16px;
    font-size: 8px;
}

.history-icons-dual .history-icon:last-child {
    margin-left: -3px;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.main-header {
    padding: 12px 28px 11px 18px;
    border-bottom: 1px solid #ececf1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    min-height: 60px;
    position: relative;
    z-index: 10;
    background-color: #ffffff;
}

.mobile-menu-btn {
    display: none;
}

.main-header .battle-menu {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4b5563;
    font-weight: 500;
    cursor: pointer;
}

.battle-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 280px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    padding: 8px 0;
}

.battle-dropdown-menu.show {
    display: block;
}

.battle-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.battle-dropdown-item:hover {
    background-color: #f5f5f5;
}

.battle-dropdown-item.active {
    background-color: #f5f5f5;
}

.battle-dropdown-item .item-content {
    flex: 1;
}

.battle-dropdown-item .item-title {
    font-weight: 600;
    font-size: 14px;
    color: #333333;
    margin-bottom: 2px;
}

.battle-dropdown-item .item-description {
    font-size: 12px;
    color: #666666;
}

.battle-dropdown-item i {
    font-size: 14px;
    color: #666666;
    margin-left: 12px;
}

.comparison-container {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 20px;
    flex: 1;
}

.direct-chat-container {
    display: flex;
    align-items: center;
    margin-left: 20px;
    flex: 1;
}

.model-selector {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background-color: #f5f5f5;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #333333;
}

.model-selector i {
    font-size: 12px;
}

.model-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 400px;
    height: 368px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
    margin-top: 4px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.model-dropdown.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.model-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e5e5;
    height: 58px;
}

.model-search i {
    color: #9ca3af;
    font-size: 14px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #333333;
}

.search-input::placeholder {
    color: #9ca3af;
}

.model-list {
    height: 300px;
    overflow-y: auto;
}

.model-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;

    min-height: 48px;
}

.model-option:hover,
.model-option:active {
    background-color: #f5f5f5;
}

.model-option.selected {
    background-color: #f5f5f5;
}

@media (hover: none) and (pointer: coarse) {
    .model-option:active {
        background-color: #e5e5e5;
    }
}

.model-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.model-info .model-logo {
    width: 20px;
    height: 20px;
}

.model-info .model-logo img {
    width: 100%;
    height: 100%;
    margin-top: 2px;
}

.model-option .model-logo {
    width: 20px;
    height: 20px;
}

.model-option .model-logo img {
    width: 100%;
    height: 100%;
    margin-top: 2px;
}

.model-option span {
    font-size: 14px;
    color: #333333;
}

.model-option i.fa-check {
    color: #333333;
    font-size: 12px;
}

.openai-logo {
    background-color: #000000;
    color: #ffffff;
}

.qwen-logo {
    background-color: #7c3aed;
    color: #ffffff;
}

.glm-logo {
    background-color: #059669;
    color: #ffffff;
}

.model-selected-logo {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-selected-logo img {
    width: 100%;
    height: 100%;
    margin-top: 2px;
}

.vs-indicator {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    padding: 0 8px;
}

.main-header-right {
    display: flex;
    align-items: center;
}

.main-header-right .api-icon {
    width: 28px;
    height: auto;
    cursor: pointer;
}

.main-header-right .login-btn {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
    margin-left: 18px;
}

.content-center {
    flex: 1;
    padding: 80px 40px;
    padding-bottom: max(80px, calc(80px + var(--safe-area-inset-bottom)));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.input-container {
    width: 100%;
    max-width: 800px;
    min-width: 800px;
    position: relative;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 16px;
}

.content-chat-mode {
    padding: 0;
    align-items: stretch;
    text-align: left;
    justify-content: flex-start;
    max-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #ffffff;
    width: 100%;
}

.chat-content {
    flex: 1;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    min-height: 0;
    scrollbar-width: thin;
    scrollbar-color: #888 #ffffff;
    width: 100%;
}

.chat-content::-webkit-scrollbar {
    width: 5px;
}

.chat-content::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 4px;
}

.chat-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.chat-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.chat-content .default-message {
    font-size: 38px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 16px;
    line-height: 1.2;
    text-align: center;
    padding: 88px;
}

#content-container {
    max-width: 1200px;
    width: 100%;
    padding: 3%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 50px;
}

.chat-question {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    max-width: 90%;
    margin-left: auto;
}

.question-bubble {
    display: flex;
    justify-content: end;
    overflow: hidden;
}

.question-text {
    color: #333333;
    font-size: 14px;
    font-weight: 500;
}

.chat-response {
    display: flex;
    flex-direction: column;
    padding-bottom: 50px;
    max-width: 90%;
}

.response-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 5px;
}

.model-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.model-info .model-name {
    font-weight: 600;
    font-size: 16px;
    color: #333333;
}

.response-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.response-content {
    line-height: 1.6;
    color: #333333;
    padding: 0 5px;
}

.response-content h1 {
    margin: 8px 0;
    font-weight: 900;
    font-size: 18px;
    color: #333333;
}

.response-content h2 {
    margin: 8px 0;
    font-weight: 700;
    font-size: 18px;
    color: #333333;
}

.response-content h3 {
    margin: 20px 0;
    font-weight: 500;
    font-size: 18px;
    color: #333333;
}

.response-content p {
    margin: 12px 0;
    font-size: 14px;
}

.response-content ol,
.response-content ul {
    margin: 12px 0;
    padding-left: 20px;
    list-style-position: inside;
}

.response-content li {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.5;
}

.response-content hr {
    margin: 18px 0;
    border: none;
    border-top: 1px solid #ccc;
    background: linear-gradient(to right, transparent, #ddd, transparent);
    height: 1px;
    opacity: 0.6;
}

.response-content .image-container{
    
overflow: hidden;
    
width: 80%;
}

.response-content .image-container .image-item{
    width: 100%;
    overflow: hidden;
}

.response-content .image-container .image-item img{
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.chat-response .response-actions-bottom {
    display: flex;
    gap: 8px;
    justify-content: start;
    padding-top: 8px;
}

.chat-question .response-actions-bottom {
    display: flex;
    gap: 12px;
    justify-content: end;
    padding-top: 8px;
}

.action-btn-bottom {
    width: 30px;
    height: 30px;
    border: none;
    background-color: #ffffff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #666666;
    font-size: 14px;
}

.action-btn-bottom:hover {
    background-color: #f8f9fa;
    border-color: #d1d5db;
    color: #333333;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.action-btn-bottom:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.rewrite-btn:hover {
    background-color: #e3f2fd;
    border-color: #1976d2;
    color: #1976d2;
}

.copy-btn:hover {
    background-color: #f3e5f5;
    border-color: #7b1fa2;
    color: #7b1fa2;
}

.delete-btn:hover {
    background-color: #fef2f2;
    color: #c61616;
}

.chat-input-container {
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: #ffffff;
    padding: 28px 3% 18px 3%;
    padding-bottom: max(18px, calc(18px + var(--safe-area-inset-bottom)));
    box-sizing: border-box;
    flex-shrink: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.chat-input-container .input-container {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
}

.input-disclaimer {
    text-align: center;
    font-size: 12px;
    color: #666666;
    margin-top: 8px;
}

.question-display {
    display: flex;
    justify-content: flex-end;
    margin: 20px 0;
    max-width: 1200px;
    width: 100%;
}

.question-text {
    background-color: #f8f8f8;
    border: none;
    border-radius: 18px;
    padding: 18px 26px;
    display: inline-block;
    line-height: 1.5;
}

.question-label {
    font-weight: 600;
    color: #666666;
    margin-right: 8px;
    font-size: 14px;
}

.question-content {
    color: #333333;
    font-size: 14px;
    line-height: 1.4;
}

.ai-response-container {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.ai-response-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 24px;
    position: relative;
    min-height: 300px;
    max-height: 450px;
    overflow-y: auto;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e5e5;
}

.card-header .model-logo {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    color: #ffffff;
}

.card-header .model-name {
    font-weight: 600;
    font-size: 16px;
    color: #333333;
    flex: 1;
}

.card-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.action-btn {
    width: 32px;
    height: 32px;
    border: none;
    background-color: #f8f9fa;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #666666;
    font-size: 14px;
}

.action-btn:hover {
    background-color: #e9ecef;
    color: #333333;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.action-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.regenerate-btn:hover {
    background-color: #e3f2fd;
    color: #1976d2;
}

.copy-btn:hover {
    background-color: #f3e5f5;
    color: #7b1fa2;
}

.expand-btn:hover {
    background-color: #e8f5e8;
    color: #388e3c;
}

.card-content {
    line-height: 1.6;
    color: #333333;
}

.card-content h1,
.card-content h2,
.card-content h3 {
    margin: 16px 0 8px 0;
    font-weight: 600;
}

.card-content h1 {
    font-size: 20px;
}

.card-content h2 {
    font-size: 18px;
}

.card-content h3 {
    font-size: 16px;
}

.card-content p {
    margin: 8px 0;
    font-size: 14px;
}

.card-content ul,
.card-content ol {
    margin: 8px 0;
    padding-left: 20px;
}

.card-content li {
    margin: 4px 0;
    font-size: 14px;
}

.card-content pre {
    background-color: #f8f9fa;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 12px;
    margin: 12px 0;
    overflow-x: auto;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 13px;
    line-height: 1.4;
    white-space: pre;
}

.card-content code {
    background-color: #f8f9fa;
    padding: 2px 4px;
    border-radius: 3px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 13px;
    white-space: pre;
}

.scroll-indicator {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    color: #9ca3af;
    font-size: 16px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.ai-logos {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.ai-logos img {
    width: 22px;
    height: 22px;
}

.main-title {
    font-size: 42px;
    font-weight: 600;
    color: #000;
    padding: 8px 0 28px 0;
    line-height: 1.2;
}

.subtitle {
    font-size: 15px;
    color: #333;
    margin-bottom: 40px;
    max-width: 750px;
    line-height: 1.5;
}

.leaderboard-link {
    color: #3b82f6;
    text-decoration: none;
    padding: 8px;
}

.input-container {
    width: 100%;
    position: relative;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 16px;
}

.send-input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
    color: #333333;
    resize: none;
    min-height: 24px;
    max-height: 180px;
    overflow-y: auto;
    line-height: 1.5;
    box-sizing: border-box;
}

.send-input::placeholder {
    color: #9ca3af;
    font-size: 16px;
}

.input-params {
    display: block;
    width: 100%;
    overflow: visible;
    background-color: #f9f9f9;
    font-size: 12px;
    padding: 10px 8px;
    border-radius: 3px;
    margin: 8px 0;
    box-sizing: border-box;
}

.input-params::after {
    content: "";
    display: block;
    clear: both;
}

.input-params li {
    width: 23%;
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: space-between;
    float: left;
    border: 1px solid #ccc;
    padding: 0 8px 0 3px;
    font-size: 12px;
    border-radius: 3px;
    background-color: #fff;
    cursor: pointer;
    margin: 1%;
    line-height: 30px;
    position: relative;
    text-align: center;
}

.input-params li .param-label {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.input-params li .param-arrow {
    font-size: 10px;
    color: #666;
    margin-left: 4px;
    flex-shrink: 0;
}

.input-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.input-left-icons {
    display: flex;
    gap: 12px;
}

.input-left-icons i {
    color: #6b7280;
    font-size: 14px;
    cursor: pointer;
    padding: 6px;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    background-color: #ffffff;
    transition: all 0.2s ease;
}

.input-left-icons i:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
}

.input-left-icons i.active {

    border: 1px solid #333;

    background-color: #333;

    color: #fff;
}

.input-right-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.input-right-icons .send-history {
    background-color: transparent;
    border: none;
    border-radius: 3px;
    height: 30px;
    padding: 0 8px;
    line-height: 30px;
    font-size: 14px;
    color: #999;
}

.input-right-icons .send-history i {
    color: transparent;
    margin-right: 5px;
    border: 1px solid #999;
    padding: 2px;
    border-radius: 2px;
}

.input-right-icons .send-history.active {
    color: #333;
}

.input-right-icons .send-history.active i {
    color: #333;
    border-color: #333;
}

.input-right-icons .send-btn {
    background-color: #374151;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
}

.expanded-card-container {
    position: fixed;
    top: 0;
    left: 240px;
    width: calc(100% - 240px);
    height: 100%;
    background-color: #ffffff;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(100%);
    animation: slideUpFromBottom 0.3s ease-out forwards;
}

@keyframes slideUpFromBottom {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDownToBottom {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}

.expanded-card-container.closing {
    animation: slideDownToBottom 0.3s ease-in forwards;
}

.expanded-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    border-bottom: 1px solid #e5e5e5;
    background-color: #ffffff;
    flex-shrink: 0;
}

.expanded-model-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.expanded-model-name {
    font-weight: 600;
    font-size: 18px;
    color: #333333;
}

.expanded-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.expanded-copy-btn,
.expanded-minimize-btn {
    width: 40px;
    height: 40px;
    border: none;
    background-color: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #666666;
    font-size: 16px;
}

.expanded-copy-btn:hover,
.expanded-minimize-btn:hover {
    background-color: #e9ecef;
    color: #333333;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.expanded-copy-btn:active,
.expanded-minimize-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.expanded-card-content {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    line-height: 1.6;
    color: #333333;
}

.expanded-card-content h1,
.expanded-card-content h2,
.expanded-card-content h3 {
    margin: 24px 0 12px 0;
    font-weight: 600;
}

.expanded-card-content h1 {
    font-size: 28px;
}

.expanded-card-content h2 {
    font-size: 24px;
}

.expanded-card-content h3 {
    font-size: 20px;
}

.expanded-card-content p {
    margin: 12px 0;
    font-size: 16px;
}

.expanded-card-content ul,
.expanded-card-content ol {
    margin: 12px 0;
    padding-left: 24px;
}

.expanded-card-content li {
    margin: 6px 0;
    font-size: 16px;
}

.expanded-card-content pre {
    background-color: #f8f9fa;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
    overflow-x: auto;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 14px;
    line-height: 1.4;
    white-space: pre;
}

.expanded-card-content code {
    background-color: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 14px;
    white-space: pre;
}

.swal2-title {
    font-size: 20px !important;
    font-weight: normal;
    color: #000;
}

.swal2-html-container {
    font-size: 14px !important;
    color: #333;
}

.swal2-confirm,
.swal2-cancel {
    font-size: 14px !important;
    padding: 8px 20px;
}

.swal-popup-full {
    display: flex !important;
    flex-direction: column !important;
    max-width: 90vw;
    max-height: 90vh;
    padding: 38px 18px 8px 18px !important;
}

.swal-html-full {
    flex: 1 !important;
    width: 100% !important;
    padding: 0;
    margin: 0 !important;
    box-sizing: border-box;
}

.swal-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.swal-close-outside {
    width: 30px;
    height: 30px;
    font-size: 18px;
    position: absolute !important;
    top: 0;
    right: 0;
    background: transparent;
    color: #555;
}

.codeblock {
    position: relative;
    margin: 18px 0;
    padding: 5px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    border: 1px solid rgba(0, 0, 0, .06);
    background-color: #eee;
}

.codeblock-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 8px;
    backdrop-filter: blur(4px);
}

.codeblock-lang {
    opacity: .7;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: 14px;
}

.codeblock-actions {
    display: flex;
    gap: .5rem;
}

.codeblock-btn {
    border: 0;
    padding: .25rem .6rem;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
}

.codeblock-btn:active {
    transform: translateY(1px);
}

.codeblock pre {
    margin: 0;
    max-height: 300px;
    overflow: auto;
    tab-size: 2;
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
    display: block;
}

.codeblock pre code {
    display: block;
    padding: 1rem 1.2rem;
    white-space: pre;
    overflow-x: auto;
    margin: 5px;
}

.codeblock pre::-webkit-scrollbar {
    height: 5px;
    width: 5px;
}

.codeblock pre::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .2);
    border-radius: 8px;
}

.user-info {
    display: none;
    overflow: hidden;
}

.bottom-user {
    display: none;
    overflow: hidden;
    padding: 10px 8px 10px 12px;
}


.bottom-user .thumbnail {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: block;
    float: left;
}

.bottom-user .info {
    float: left;
}

.bottom-user .nickname {
    font-size: 14px;
    line-height: 1;
    padding-left: 8px;
    color: #000;
}

.bottom-user .balance {
    font-size: 12px;
    padding-left: 8px;
    cursor: pointer;
}

.bottom-user .balance i {
    font-style: normal;
    color: #666;
}

.bottom-user .balance span {
    font-size: 10px;
    color: #0061ff;
}

.bottom-user .logout {
    border: none;
    background: transparent;
    cursor: pointer;
    float: right;
    overflow: hidden;
    display: block;
}

.bottom-user .logout svg {
    width: 20px;
    height: auto;
    color: #666;
    vertical-align: top;
    margin: 3px 5px 0 0;
}

@supports (-webkit-touch-callout: none) {
    @media (max-width: 768px) {
        .sidebar-bottom {
            padding-bottom: max(100px, calc(20px + var(--safe-area-inset-bottom))) !important;
        }

        .content-center {
            padding-bottom: max(40px, calc(40px + var(--safe-area-inset-bottom))) !important;
        }

        .chat-input-container {
            padding-bottom: max(16px, calc(16px + var(--safe-area-inset-bottom))) !important;
        }
    }
}

.reasoning {
    display: block;
    background-color: #f5f5f5;
    font-size: 12px;
    padding: 18px;
    border-radius: 5px;
    color: #666;
    line-height: 1.3;
}

.reasoning p {
    margin: 8px 0;
}

.fee {
    border: none;
    overflow: hidden;
    background-color: #f5f5f5;
    line-height: 20px;
    border-radius: 3px;
    padding: 0 12px;
    font-size: 12px;
}

.fee i {
    display: inline-block;
    font-style: normal;
    padding: 0;
    color: #333;
    font-weight: 600;
}

.fee span {
    color: #666;
    display: inline-block;
    padding: 0 8px;
}

.fee_detail {
    border: none;
    overflow: hidden;
    line-height: 20px;
    border-radius: 3px;
    font-size: 12px;
}

.fee_detail li {
    display: block;
    box-sizing: border-box;
    line-height: 28px;
    width: 50%;
    float: left;
}

.fee_detail i {
    display: inline-block;
    font-style: normal;
    padding: 0 8px 0 0;
    border-radius: 3px;
    color: #08c;
    font-weight: bold;
    width: 30%;
    text-align: right;
}

.fee_detail span {
    color: #666;
    display: inline-block;
    width: 70%;
    text-align: left;
}

.loading-gif {
    width: 20px;
    height: 20px;
    margin: 18px auto;
}

@media (max-width: 768px) {
    body {
        height: calc(100vh - var(--safe-area-inset-bottom));
    }

    .container {
        height: calc(100vh - var(--safe-area-inset-bottom));
    }

    .container .main-content {
        height: calc(100vh - var(--safe-area-inset-bottom));
    }

    .sidebar {
        width: 280px;
        position: fixed;
        left: -280px;
        top: 0;
        height: calc(100vh - var(--safe-area-inset-bottom));
        z-index: 1000;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .sidebar.show {
        left: 0;
    }

    .main-content {
        width: 100%;
        margin-left: 0;
        height: calc(var(--vh, 1vh) * 100);
    }

    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: calc(var(--vh, 1vh) * 100);
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: none;
    }

    .sidebar-overlay.show {
        display: block;
    }

    .mobile-menu-btn {
        width: 40px;
        height: 38px;
        background-color: #ffffff;
        border: 1px solid #e5e5e5;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .model-selector-container {
        width: 100%;
        justify-content: center;
        align-items: center;
        display: flex;
        overflow: hidden;
    }

    .mobile-menu-btn:hover {
        background-color: #f5f5f5;
    }

    .mobile-menu-btn i {
        font-size: 16px;
        color: #4b5563;
    }

    .main-header {
        padding: 16px 20px;
        flex-direction: row;
        gap: 0;
        align-items: center;
        justify-content: space-between;
        flex-shrink: 0;
        min-height: 60px;
        position: relative;
        z-index: 10;
        background-color: #ffffff;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        box-sizing: border-box;
    }

    .main-header .battle-menu {
        flex: 1;
        justify-content: center;
        font-size: 16px;
        position: relative;
        margin: 0 16px;
    }

    .battle-dropdown-menu {
        width: calc(100vw - 32px);
        max-width: 300px;
        left: 16px;
        right: 16px;
        transform: none;
        top: calc(100% + 8px);
    }

    .dropdown-menu {
        width: calc(100% - 40px);
        max-width: 240px;
        min-width: 180px;
        left: 20px;
        right: auto;
        top: calc(100% + 8px);
        transform: none;
        margin-top: 0;
        position: absolute;
        box-sizing: border-box;
        z-index: 1001;
    }

    .dropdown-item {
        padding: 6px 10px;
        font-size: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        min-height: 32px;
        display: flex;
        align-items: center;
    }

    .dropdown-item span {
        flex: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 12px;
    }

    .dropdown-item i {
        font-size: 12px;
        width: 14px;
        flex-shrink: 0;
    }

    .comparison-container {
        flex-direction: row;
        gap: 8px;
        margin-left: 0;
        width: 100%;
        background-color: #ffffff;
        border-top: 1px solid #e5e5e5;
        padding: 8px 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        z-index: 100;
        min-height: auto;
        height: auto;
        flex: 0.1;
        align-items: center;
    }

    .direct-chat-container {
        margin-left: 0;
        width: 100%;
        background-color: #ffffff;
        border-bottom: 1px solid #e5e5e5;
        padding: 10px;
        z-index: 100;
        min-height: auto;
        height: auto;
        flex: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .model-selector {
        flex: 1;
        max-width: 100%;
        padding: 6px 12px;
        font-size: 14px;
        min-height: auto;
        height: auto;
        border-radius: 6px;
        background-color: #ffffff;
        position: relative;
        cursor: pointer;
        justify-content: center;
        overflow: hidden;
    }

    .model-selector span {
        max-width: 80%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: inline-block;
    }

    .model-list .model-option span {
        max-width: none;
        overflow: visible;
        text-overflow: initial;
        white-space: normal;
        display: inline;
        word-wrap: break-word;
        word-break: break-word;
    }

    .model-dropdown {
        position: fixed;
        top: 58px;
        left: 20px;
        right: 20px;
        width: calc(100vw - 40px);
        height: 368px;
        background-color: #ffffff;
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        display: none;
        margin-top: 4px;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .model-dropdown.show {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .content-center {
        padding: 40px 20px;
    }

    .main-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .ai-logos {
        gap: 12px;
        margin-bottom: 24px;
    }

    .logo-item {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }

    .input-container {
        min-width: 100%;
        max-width: 100%;
        padding: 12px;
    }

    .input-bottom {
        margin-top: 16px;
        flex-direction: row;
        gap: 12px;
        align-items: center;
        justify-content: space-between;
    }

    .input-left-icons {
        gap: 8px;
    }

    .input-left-icons i {
        padding: 4px;
        font-size: 12px;
    }

    .input-right-icons {
        gap: 8px;
    }

    .input-right-icons .send-history {
        padding: 0 6px;
        font-size: 12px;
        height: 28px;
        line-height: 28px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .input-right-icons .send-history i {
        margin-right: 4px;
        padding: 1px;
        font-size: 10px;
    }

    .input-right-icons .send-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
        flex-shrink: 0;
    }

    .vs-indicator {
        font-size: 12px;
        padding: 4px 8px;
        margin: 0;
        flex-shrink: 0;
        color: #666666;
        font-weight: 600;
    }

    .main-header-right .login-btn {
        padding: 8px 12px;
        font-size: 14px;
        flex-shrink: 0;
    }

    .content-center.comparison-mode {
        padding: 20px 16px;
    }

    .question-display {
        justify-content: flex-end;
        margin-bottom: 16px;
    }

    .question-text {
        max-width: 100%;
        padding: 10px 12px;
    }

    .question-label {
        font-size: 13px;
    }

    .question-content {
        font-size: 13px;
    }

    .ai-response-container {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 16px;
    }

    .ai-response-card {
        min-height: 250px;
        max-height: 350px;
        padding: 16px;
    }

    .card-header {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .card-header .model-name {
        font-size: 14px;
    }

    .card-actions {
        gap: 6px;
    }

    .action-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .card-content h1 {
        font-size: 18px;
    }

    .card-content h2 {
        font-size: 16px;
    }

    .card-content h3 {
        font-size: 15px;
    }

    .card-content p,
    .card-content li {
        font-size: 13px;
    }

    .card-content pre {
        padding: 8px;
        font-size: 12px;
        white-space: pre;
    }

    .card-content code {
        font-size: 12px;
        white-space: pre;
    }

    .comparison-buttons {
        display: none;
    }

    .comparison-btn {
        padding: 10px 16px;
        font-size: 13px;
        min-width: auto;
        width: 100%;
    }

    .content-center.direct-chat-mode {
        height: calc(100vh - 100px);
        max-height: calc(100vh - 100px);
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
        background-color: #ffffff;
    }

    .content-chat-mode {
        height: calc(100vh - 150px - var(--safe-area-inset-bottom));
        min-height: 400px;
    }

    .chat-content {
        padding: 16px 3% 180px 3%;
    }

    .question-bubble {
        max-width: 100%;
        padding: 0;
    }

    .question-text {
        font-size: 13px;
        border-radius: 5px;
    }

    .response-header {
        padding: 12px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .model-info .model-name {
        font-size: 14px;
    }

    .response-actions {
        align-self: flex-end;
        gap: 6px;
    }

    .response-content h3 {
        font-size: 16px;
        margin: 16px 0 8px 0;
    }

    .response-content p,
    .response-content li {
        font-size: 13px;
    }

    .response-content ol {
        padding-left: 16px;
    }

    .response-content hr {
        margin: 20px 0;
    }

    .chat-input-container {
        margin-top: 16px;
        padding: 0 16px;
        padding-bottom: max(16px, calc(16px + var(--safe-area-inset-bottom)));
        box-sizing: border-box;
    }

    .chat-input-container .input-container {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }

    .input-disclaimer {
        font-size: 11px;
    }

    .chat-question {
        max-width: 100%;
    }

    .chat-question .response-actions-bottom {
        padding: 0;
    }

    .chat-response {
        max-width: 100%;
    }

    .chat-response .response-actions-bottom {
        padding: 0;
    }

    .action-btn-bottom {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .expanded-card-container {
        left: 0;
        width: 100%;
        transform: translateY(100%);
        animation: slideUpFromBottom 0.3s ease-out forwards;
    }

    .expanded-card-header {
        padding: 16px 20px;
    }

    .expanded-model-name {
        font-size: 16px;
    }

    .expanded-copy-btn,
    .expanded-minimize-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .expanded-card-content {
        padding: 20px;
    }

    .expanded-card-content h1 {
        font-size: 24px;
    }

    .expanded-card-content h2 {
        font-size: 20px;
    }

    .expanded-card-content h3 {
        font-size: 18px;
    }

    .expanded-card-content p,
    .expanded-card-content li {
        font-size: 14px;
    }

    .expanded-card-content pre {
        padding: 12px;
        font-size: 12px;
        white-space: pre;
    }

    .expanded-card-content code {
        font-size: 12px;
        white-space: pre;
    }

    .fee {
        padding: 0 8px;
    }
}

/* 参数选项浮窗样式 */
.param-options-popup {
    position: fixed;
    z-index: 99999;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    pointer-events: none;
}

.param-options-popup.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.param-options-content {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    min-width: 150px;
}

.param-option-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.15s ease;
    border-bottom: 1px solid #f5f5f5;
    font-size: 14px;
    color: #333;
}

.param-option-item:last-child {
    border-bottom: none;
}

.param-option-item:hover {
    background: #f5f5f5;
}

.param-option-item:active {
    background: #e8e8e8;
}

/* 滚动条样式 */
.param-options-content::-webkit-scrollbar {
    width: 6px;
}

.param-options-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.param-options-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.param-options-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .param-options-content {
        max-height: 250px;
        min-width: 200px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }

    .param-option-item {
        padding: 14px 16px;
        font-size: 15px;
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .param-option-item:active {
        background: #d8d8d8;
    }

    .input-params li {
        width: 48%;
    }
}