.conversation-thread .user-message {
    background-color: #0A2540 !important;
    color: white !important;
}

/* Custom chat message styling */
.chat-carousel .conversation-thread {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* User Message */
.chat-message-user {
    align-self: flex-end;
    max-width: 80%;
    background-color: #0A2540;
    color: white;
    padding: 10px 14px;
    border-radius: 18px 18px 0 18px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.user-avatar i {
    color: white;
    font-size: 12px;
}

/* Bot Message */
.chat-message-bot {
    align-self: flex-start;
    max-width: 80%;
    background-color: white;
    padding: 10px 14px;
    border-radius: 18px 18px 18px 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.bot-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #F0F6FF;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.bot-avatar i {
    color: #1E75FF;
    font-size: 12px;
}

/* Carousel Navigation */
.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #E2E8F0;
    border: none;
    padding: 0;
    cursor: pointer;
}

.carousel-dot.active {
    background-color: #1E75FF;
}

/* Variation Label */
#variation-label {
    font-size: 0.8rem;
    color: #718096;
    font-weight: 500;
}

/* Chat container styles */
.demo-chat-interface {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 21, 64, 0.15);
}

.demo-header {
    background: linear-gradient(135deg, #1E75FF, #0A2540);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-header-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-header-title {
    margin: 0;
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
}

.demo-header-status {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
}

.demo-tag {
    background-color: rgba(255, 255, 255, 0.15);
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-weight: 500;
    color: white;
}

.demo-chat-area {
    background-color: #F8FAFC;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-height: 600px;
    max-height: 600px;
    overflow-y: auto;
}

/* Chat messages */
.demo-chat-message {
    max-width: 80%;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 8px;
}

.demo-chat-message.user {
    background-color: #0A2540;
    color: white;
    border-radius: 1rem 1rem 0 1rem;
    align-self: flex-end;
}

.demo-chat-message.system {
    background-color: white;
    border-radius: 1rem 1rem 1rem 0;
    align-self: flex-start;
}

/* Conversation threads */
.conversation-thread {
    display: none;
}

.conversation-thread[id="conversation-1"] {
    display: block;
}

/* Chat option buttons */
.demo-options {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.demo-option-btn {
    text-align: left;
    background-color: white;
    border: 1px solid #E2E8F0;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.demo-option-btn:hover {
    background-color: #F8FAFC;
    border-color: #CBD5E1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.demo-option-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    gap: 8px;
    padding: 0.5rem 1rem;
    align-self: flex-start;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin: 0.5rem 0;
} 