/* ================================================
   AI CHAT BOT
   ================================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - Customizable */
    --primary-color: #292929;
    --primary-dark: #1a1a1a;
    --primary-light: #3d3d3d;
    --secondary-color: #1f1f1f;
    
    /* UI Colors */
    --bg-white: #ffffff;
    --bg-gray: #f7f8fc;
    --bg-light: #f9fafb;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Status Colors */
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    
    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #292929 0%, #1f1f1f 100%);
    min-height: 100vh;
}

/* ================================================
   DEMO PAGE STYLES
   ================================================ */

.demo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.demo-header {
    text-align: center;
    color: white;
    margin-bottom: 60px;
    animation: fadeInDown 0.6s ease;
}

.demo-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.demo-header p {
    font-size: 1.25rem;
    opacity: 0.95;
}

.demo-content {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-xl);
    animation: fadeInUp 0.6s ease;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: transform var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.feature-card p {
    color: var(--text-gray);
}

.demo-info {
    text-align: center;
    padding: 30px;
    background: var(--bg-gray);
    border-radius: 15px;
}

.demo-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.demo-info p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* ================================================
   CHAT BOT WIDGET STYLES
   ================================================ */

#chatbot-widget {
    position: fixed;
    top: 55rem;
    right: 15px;
    z-index: 9999;
    font-family: inherit;
    margin: 0;
    padding: 0;
}

/* Chat Button */
.chat-button {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    color: white !important;
    border: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: var(--shadow-lg) !important;
    transition: all var(--transition-normal) !important;
    position: relative !important;
    animation: slideInRight 0.5s ease, pulse 2s infinite;
    margin: 0 !important;
    padding: 0 !important;
}

.chat-button.hidden {
    display: none !important;
    opacity: 0;
    transform: scale(0);
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.chat-button i {
    font-size: 28px;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--error-color);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border: 2px solid white;
    animation: bounce 0.5s ease;
}

.notification-badge.hidden {
    display: none;
}

/* Chat Window */
.chat-window {
    position: relative;
    bottom: 34rem !important;
    right: 0 !important;
    left: auto !important;
    top: auto !important;
    width: 400px !important;
    height: 600px !important;
    max-height: 600px !important;
    background: white !important;
    border-radius: 20px !important;
    box-shadow: var(--shadow-xl) !important;
    display: none !important;
    flex-direction: column !important;
    overflow: hidden !important;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.chat-window.active {
    display: flex !important;
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* Chat Header */
.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 23px 20px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.chat-header-content {
    display: flex;
    align-items: end;
    gap: 12px;
}

.bot-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    backdrop-filter: blur(10px);
}

.bot-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: -8px;
    color: #ffffff !important;
}

.status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    opacity: 0.95;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.chat-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Chat Messages */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: var(--bg-light);
    scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

/* Message Styles */
.message {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
    animation: fadeIn 0.3s ease;
}

.message-avatar {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.message-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.message-bubble {
    background: white;
    padding: 10px 15px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    max-width: 85%;
    word-wrap: break-word;
}

.message-bubble p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.5;
}

.message-time {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0 5px;
}

/* User Message */
.user-message {
    flex-direction: row-reverse;
}

.user-message .message-content {
    align-items: flex-end;
}

.user-message .message-avatar {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.user-message .message-bubble {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    margin-left: auto;
}

.user-message .message-bubble p {
    color: white;
}

/* Quick Replies */
.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
    animation: fadeIn 0.4s ease;
}

.quick-reply-btn {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 500;
}

.quick-reply-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 10px;
    padding: 0 20px 15px;
    background: var(--bg-light);
}

.typing-dots {
    background: white;
    padding: 12px 16px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 5px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: var(--text-light);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Chat Input */
.chat-input-container {
    background: white;
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
}

.chat-input-wrapper {
    display: flex;
    gap: 3px;
    align-items: center;
    background: var(--bg-gray);
    border-radius: 25px;
    padding: 8px 12px;
    transition: all var(--transition-fast);
}

.chat-input-wrapper:focus-within {
    background: var(--bg-light);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.chat-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px;
    font-size: 0.95rem;
    outline: none;
    border-radius: 5px;
    border: 0 !important;
    padding: 3px 8px !important;
    color: var(--text-dark);
}

.chat-input::placeholder {
    color: var(--text-light);
}

.input-action-btn {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: var(--text-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    font-size: 18px;
}

.input-action-btn:hover {
    background: var(--bg-white);
    color: var(--primary-color);
    transform: scale(1.1);
}

.send-btn {
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    font-size: 16px;
}

.send-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.send-btn:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    transform: scale(1);
}

.powered-by {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 10px;
}

.powered-by strong {
    color: var(--primary-color);
}

/* ================================================
   EMOJI PICKER
   ================================================ */

.emoji-picker {
    display: none;
    grid-template-columns: repeat(8, 1fr);
    gap: 5px;
    padding: 15px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin: 0 15px 10px 15px;
    max-height: 200px;
    overflow-y: auto;
    animation: fadeInUp 0.3s ease;
}

.emoji-picker::-webkit-scrollbar {
    width: 6px;
}

.emoji-picker::-webkit-scrollbar-track {
    background: transparent;
}

.emoji-picker::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

.emoji-picker::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

.emoji-item {
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    font-size: 1.3rem;
    cursor: pointer;
    border-radius: 8px;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.emoji-item:hover {
    background: var(--bg-light);
    transform: scale(1.2);
}

.emoji-item:active {
    transform: scale(1.1);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 768px) {
    .demo-header h1 {
        font-size: 2rem;
    }
    
    .demo-header p {
        font-size: 1rem;
    }
    
    .demo-content {
        padding: 30px 20px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .chat-window {
        width: calc(100vw - 20px);
        height: calc(100vh - 100px);
        right: 10px;
        bottom: 80px;
    }
    
    .message-bubble {
        max-width: 75%;
    }
    
    .emoji-picker {
        grid-template-columns: repeat(6, 1fr);
        max-height: 180px;
    }
    
    .emoji-item {
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .demo-container {
        padding: 30px 15px;
    }
    
    #chatbot-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .chat-button {
        width: 55px;
        height: 55px;
    }
    
    .chat-button i {
        font-size: 24px;
    }
    
    .emoji-picker {
        grid-template-columns: repeat(5, 1fr);
        max-height: 150px;
        padding: 10px;
    }
    
    .emoji-item {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
}

/* ================================================
   ANIMATIONS
   ================================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* ================================================
   UTILITY CLASSES
   ================================================ */

.hidden {
    display: none !important;
}

.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: scale(0.9);
    }
}

/* ================================================
   INTERACTIVE FEATURE CARDS
   ================================================ */

.feature-card.clickable {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card.clickable:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-card.clickable:active {
    transform: translateY(-5px) scale(1.02);
}

.feature-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    animation: pulse 2s infinite;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
}

.feature-card.active {
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

/* ================================================
   COLOR CUSTOMIZATION PANEL
   ================================================ */

.color-panel,
.device-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    animation: slideIn 0.3s ease;
    max-width: 90%;
    width: 500px;
}

.color-panel-content,
.device-panel-content {
    padding: 30px;
}

.color-panel h3,
.device-panel h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 24px;
}

.color-panel p,
.device-panel p {
    margin-bottom: 20px;
    color: var(--text-gray);
}

.color-options {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.color-option {
    flex: 1;
    min-width: 200px;
}

.color-option label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.color-option input[type="color"] {
    width: 100%;
    height: 50px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-option input[type="color"]:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.color-presets {
    margin: 20px 0;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    max-height: 300px;
    overflow-y: auto;
}

.color-presets::-webkit-scrollbar {
    width: 8px;
}

.color-presets::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.color-presets::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.color-presets::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.color-presets p {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
}

.preset-btn {
    margin: 4px;
    padding: 8px 16px;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    background: white;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.preset-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
}

.preset-btn:active {
    transform: translateY(0) scale(0.98);
}

.close-panel-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.close-panel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* ================================================
   DEVICE PREVIEW PANEL
   ================================================ */

.device-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.device-btn {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.device-btn i {
    font-size: 24px;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.device-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.device-btn:hover i {
    color: var(--primary-color);
}

.device-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: var(--primary-color);
}

.device-btn.active i {
    color: white;
}

.device-info {
    text-align: center;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
    margin-top: 10px;
}

.device-info strong {
    color: var(--primary-color);
}

/* Chatbot widget size variations */
.chat-window.device-desktop {
    width: 400px !important;
    height: 600px !important;
}

.chat-window.device-tablet {
    width: 350px !important;
    height: 550px !important;
}

.chat-window.device-mobile {
    width: 300px !important;
    height: 500px !important;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Highlight effect for demonstrations */
.highlight-pulse {
    animation: highlightPulse 2s ease-in-out 3;
}

@keyframes highlightPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(102, 126, 234, 0);
    }
}

/* ================================================
   RESPONSIVE STYLES - MOBILE & TABLET
   ================================================ */

/* Tablet and smaller */
@media screen and (max-width: 768px) {
    #chatbot-widget {
        position: fixed;
        top: 55rem;
        right: 15px;
        z-index: 9999;
    }
    
    .chat-button {
        width: 55px !important;
        height: 55px !important;
    }
    
    .chat-window {
        position: absolute !important;
        bottom: 75px !important;
        right: 0 !important;
        left: auto !important;
        width: 350px !important;
        height: 500px !important;
        max-width: calc(100vw - 30px) !important;
        max-height: calc(100vh - 100px) !important;
    }
}

/* Mobile phones */
@media screen and (max-width: 480px) {
    #chatbot-widget {
        position: fixed;
        top: 55rem;
        right: 15px;
        z-index: 9999;
    }
    
    .chat-button {
        width: 50px !important;
        height: 50px !important;
    }
    
    .chat-button i,
    .chat-button .icon-chat {
        font-size: 24px !important;
    }
    
    .chat-window {
        position: fixed !important;
        bottom: 0 !important;
        right: 0 !important;
        left: 0 !important;
        top: auto !important;
        width: 100% !important;
        height: 100% !important;
        max-width: 100vw !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
    }
}

/* Force fixed positioning override for themes */
body #chatbot-widget,
html #chatbot-widget,
div#chatbot-widget {
    position: fixed;
    top: 55rem;
    right: 15px;
    z-index: 9999;
    transform: none;
}

/* ================================================
   CSS ICONS STYLING
   Pure CSS icons without Font Awesome dependency
   ================================================ */

/* Icon base styles */
.icon-chat,
.icon-robot,
.icon-minus,
.icon-close,
.icon-emoji,
.icon-attach,
.icon-send {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    line-height: 1;
}

/* Chat button icon */
.icon-chat {
    font-size: 28px;
}

/* Robot icon */
.icon-robot {
    font-size: 22px;
}

/* Minimize icon */
.icon-minus {
    font-size: 24px;
    font-weight: bold;
}

/* Close icon */
.icon-close {
    font-size: 28px;
    font-weight: normal;
    line-height: 0.8;
}

/* Emoji icon */
.icon-emoji {
    font-size: 20px;
}

/* Attach icon */
.icon-attach {
    font-size: 18px;
}

/* Send icon */
.icon-send {
    font-size: 18px;
    font-weight: bold;
}

/* Fix for message avatar icons */
.message-avatar .icon-robot {
    font-size: 16px;
}

/* Fix for bot avatar in header */
.bot-avatar .icon-robot {
    font-size: 22px;
}