.zc-ai-suite-box {
border: 1px solid #333;
padding: 15px;
margin: 20px 0;
background: #050505;
color: #f5f5f5;
border-radius: 8px;
}
.zc-ai-suite-title {
font-size: 18px;
color: #ffdd55;
margin-bottom: 6px;
}
.zc-ai-suite-desc {
font-size: 13px;
color: #cccccc;
margin-bottom: 10px;
}
.zc-ai-suite-field label span {
display: block;
font-size: 13px;
margin-bottom: 4px;
color: #ffffff;
}
.zc-ai-suite-field input,
.zc-ai-suite-field textarea {
width: 100%;
background: #111;
border: 1px solid #333;
color: #f0f0f0;
padding: 6px 8px;
font-size: 13px;
border-radius: 4px;
}
.zc-ai-suite-field {
margin-bottom: 10px;
}
.zc-ai-suite-btn {
background: #ff2626;
color: #fff;
border: 1px solid #ffdd55;
padding: 6px 14px;
font-size: 13px;
border-radius: 20px;
cursor: pointer;
}
.zc-ai-suite-result-wrap {
margin-top: 10px;
font-size: 13px;
}
.zc-ai-suite-status {
color: #ffdd55;
margin-bottom: 4px;
} @media (max-width: 768px) {
.zc-ai-suite-box {
padding: 12px;
}
}.zc-ai-compare-box {
width: 100%;
max-width: 1200px;
margin: 0 auto 40px auto;
background: #111111;
border-radius: 10px;
border: 1px solid #333;
padding: 20px 24px 26px 24px;
}
.zc-ai-compare-box h2 {
font-size: 1.4rem;
margin: 0 0 10px;
color: #ffdd55;
}
.zc-ai-compare-intro {
font-size: 0.9rem;
color: #bbbbbb;
margin-bottom: 15px;
}
.zc-ai-compare-form {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 12px;
}
.zc-ai-compare-form input[type="text"] {
flex: 1 1 0;
min-width: 0;
background: #000;
border: 1px solid #444;
color: #f0f0f0;
padding: 8px 10px;
border-radius: 4px;
font-size: 0.9rem;
}
#zc-ai-compare-btn {
background: #ff2626;
border: none;
color: #fff;
padding: 8px 16px;
border-radius: 4px;
cursor: pointer;
font-size: 0.9rem;
white-space: nowrap;
}
#zc-ai-compare-btn:hover {
background: #ff4444;
}
#zc-ai-compare-actions {
display: flex;
justify-content: flex-end;
margin-bottom: 12px;
}
#zc-ai-compare-pdf {
background: #222;
border: 1px solid #555;
color: #f5f5f5;
padding: 6px 12px;
border-radius: 4px;
cursor: pointer;
font-size: 0.85rem;
}
#zc-ai-compare-pdf:hover {
border-color: #ffdd55;
}
#zc-ai-compare-result {
margin-top: 10px;
} .zc-ai-compare-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 25px;
margin-top: 10px;
}
.zc-ai-col {
background: #080808;
border-radius: 10px;
border: 1px solid #333;
padding: 16px 18px;
}
.zc-ai-col h3 {
margin-top: 0;
margin-bottom: 8px;
font-size: 1rem;
color: #ffdd55;
}
.zc-ai-section {
font-size: 0.88rem;
line-height: 1.5;
color: #e0e0e0;
}
.zc-ai-summary {
margin-top: 22px;
border-radius: 10px;
border: 1px solid #ffdd55;
background: #151007;
padding: 14px 16px;
}
.zc-ai-summary h3 {
margin: 0 0 6px;
font-size: 1rem;
color: #ffdd55;
}
.zc-ai-summary p {
margin: 0;
font-size: 0.9rem;
}
.zc-ai-compare-raw pre {
white-space: pre-wrap;
font-size: 0.9rem;
} @media (max-width: 800px) {
.zc-ai-compare-grid {
grid-template-columns: 1fr;
}
} #zc-ai-chat-widget {
position: fixed;
right: 18px;
bottom: 75px;
z-index: 9999;
font-size: 14px;
}
#zc-ai-chat-toggle {
background: #000;
color: #fff;
padding: 8px 12px;
border-radius: 20px;
cursor: pointer;
border: 1px solid #ffdd55;
font-size: 13px;
}
#zc-ai-chat-window {
position: fixed;
right: 18px;
bottom: 60px;
width: 320px;
max-height: 420px;
background: #111;
border-radius: 10px;
border: 1px solid #333;
display: flex;
flex-direction: column;
overflow: hidden;
opacity: 0;
transform: translateY(10px);
pointer-events: none;
transition: opacity 0.25s ease, transform 0.25s ease;
}
#zc-ai-chat-window.open {
opacity: 1;
transform: translateY(0);
pointer-events: auto;
}
#zc-ai-chat-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 8px 10px;
background: #000;
border-bottom: 1px solid #333;
}
.zc-ai-chat-title-wrap strong {
display: block;
font-size: 13px;
}
.zc-ai-chat-subtitle {
font-size: 11px;
color: #bbbbbb;
}
.zc-ai-chat-header-actions button {
background: transparent;
border: none;
color: #888;
cursor: pointer;
font-size: 14px;
}
#zc-ai-chat-messages {
flex: 1 1 auto;
padding: 8px 10px;
overflow-y: auto;
background: #111;
}
#zc-ai-chat-input-row {
display: flex;
border-top: 1px solid #333;
}
#zc-ai-chat-input-row input {
flex: 1 1 auto;
border: none;
padding: 8px 10px;
font-size: 13px;
background: #000;
color: #f0f0f0;
}
#zc-ai-chat-input-row button {
border: none;
background: #ff2626;
color: #fff;
padding: 0 12px;
cursor: pointer;
font-size: 13px;
}
.zc-ai-msg-user,
.zc-ai-msg-bot {
margin-bottom: 6px;
font-size: 12px;
line-height: 1.4;
}
.zc-ai-msg-user {
text-align: right;
}
.zc-ai-msg-user strong {
color: #ffdd55;
}
.zc-ai-msg-bot strong {
color: #ff5555;
}
.zc-ai-msg-error strong {
color: #ff5555;
} @media (max-width: 768px) {
.zc-ai-compare-box {
padding: 12px;
}
.zc-ai-compare-form {
display: flex;
flex-direction: column;
gap: 12px;
width: 100%;
}
#zc-ai-carA,
#zc-ai-carB {
width: 100% !important;
font-size: 16px !important;
padding: 14px !important;
box-sizing: border-box;
}
#zc-ai-compare-btn {
width: 100% !important;
padding: 14px !important;
font-size: 17px !important;
font-weight: bold;
margin-top: 5px;
border-radius: 8px;
} #zc-ai-compare-result {
margin-top: 18px;
}
}.zc-consent-banner {
position: fixed;
left: 0;
right: 0;
bottom: 0;
z-index: 9999;
display: none;
background: #000;
background: linear-gradient(90deg, #000000 0%, #111111 35%, #222222 100%);
color: #f5f5f5;
font-size: 13px;
padding: 12px 16px;
box-shadow: 0 -4px 12px rgba(0,0,0,0.4);
}
.zc-consent-inner {
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
gap: 12px;
flex-wrap: wrap;
}
.zc-consent-text a {
color: #ffcc00;
text-decoration: underline;
}
.zc-consent-actions {
margin-left: auto;
display: flex;
gap: 8px;
flex-wrap: wrap;
}
.zc-consent-btn {
border: none;
cursor: pointer;
padding: 6px 12px;
border-radius: 3px;
font-size: 13px;
font-weight: 600;
}
.zc-consent-accept {
background: #ffcc00;
color: #111;
}
.zc-consent-decline {
background: #333;
color: #f5f5f5;
}
@media (max-width: 600px) {
.zc-consent-inner {
flex-direction: column;
align-items: flex-start;
}
.zc-consent-actions {
margin-left: 0;
}
}