/**
 * SmartAssistant AI Plugin CSS
 * @package     SmartAssistant
 * @copyright   Copyright (C) 2024 Druskus ZoneNations. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

/* ==========================================================================
   Ribbon (Fettuccia) Styles
   ========================================================================== */

.smart-assistant-ribbon {
    position: fixed;
    z-index: 9999;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.smart-assistant-ribbon-bottom {
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
    min-height: 60px;
}

.smart-assistant-ribbon-top {
    top: 0;
    left: 0;
    right: 0;
    height: auto;
    min-height: 60px;
}

.smart-assistant-ribbon-left {
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    width: 200px;
    height: 50px;
}

.smart-assistant-ribbon-right {
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: right center;
    width: 200px;
    height: 50px;
}

.smart-assistant-ribbon-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    gap: 15px;
    flex-wrap: wrap;
}

.smart-assistant-ribbon-icon {
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.smart-assistant-ribbon-text {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    min-width: 200px;
}

.smart-assistant-ribbon-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.smart-assistant-ribbon-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.smart-assistant-ribbon-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    transition: all 0.2s ease;
}

.smart-assistant-ribbon-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* ==========================================================================
   Admin Notification Bar
   ========================================================================== */

.smart-assistant-admin-bar {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 10px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.admin-notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.admin-notification-icon {
    font-size: 20px;
    animation: pulse 2s infinite;
}

.admin-notification-text {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.admin-notification-actions {
    display: flex;
    gap: 10px;
}

.admin-notification-actions button {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s ease;
}

.admin-notification-actions button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-take-over {
    background: rgba(40, 167, 69, 0.8) !important;
    border-color: rgba(40, 167, 69, 1) !important;
}

.btn-dismiss {
    background: rgba(108, 117, 125, 0.8) !important;
    border-color: rgba(108, 117, 125, 1) !important;
}

/* ==========================================================================
   Online Admins Indicator
   ========================================================================== */

.smart-assistant-online-admins {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 10px 15px;
    margin: 0 15px;
    border-radius: 6px;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.online-admins-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.online-indicator {
    font-size: 12px;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.online-text {
    font-size: 13px;
    font-weight: 500;
}

/* ==========================================================================
   Private Chat Mode
   ========================================================================== */

.smart-assistant-handoff-controls {
    background: #fff3cd;
    border-top: 1px solid #ffeaa7;
    padding: 10px 15px;
}

.handoff-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.handoff-icon {
    font-size: 16px;
}

.handoff-text {
    font-size: 13px;
    font-weight: 500;
    color: #856404;
}

.handoff-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.handoff-actions button {
    padding: 4px 12px;
    border: 1px solid #ffc107;
    background: white;
    color: #856404;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s ease;
}

.handoff-actions button:hover {
    background: #ffc107;
    color: white;
}

/* ==========================================================================
   Base Assistant Styles
   ========================================================================== */

.smart-assistant {
    position: fixed;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.smart-assistant.smart-assistant-visible {
    opacity: 1;
}

/* Ribbon type: full-width bar at top/bottom, no transform (breaks child fixed positioning) */
.smart-assistant.smart-assistant-ribbon-type {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.smart-assistant.smart-assistant-ribbon-type .smart-assistant-ribbon {
    position: relative;
    width: 100%;
}

.smart-assistant.smart-assistant-ribbon-type .smart-assistant-ribbon-top {
    /* If ribbon is top, reposition parent */
}

.smart-assistant.smart-assistant-ribbon-type .smart-assistant-chat-ribbon {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 10000;
}

/* Floating type: use scale animation */
.smart-assistant:not(.smart-assistant-ribbon-type) {
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.smart-assistant:not(.smart-assistant-ribbon-type).smart-assistant-visible {
    transform: scale(1);
}

/* Position variants */
.smart-assistant-bottom-right {
    bottom: 20px;
    right: 20px;
}

.smart-assistant-bottom-left {
    bottom: 20px;
    left: 20px;
}

.smart-assistant-top-right {
    top: 20px;
    right: 20px;
}

.smart-assistant-top-left {
    top: 20px;
    left: 20px;
}

/* ==========================================================================
   Toggle Button
   ========================================================================== */

.smart-assistant-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.smart-assistant-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.smart-assistant-icon svg {
    width: 28px;
    height: 28px;
}

.smart-assistant-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* ==========================================================================
   Chat Window
   ========================================================================== */

.smart-assistant-chat {
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid #e1e8ed;
}

.smart-assistant-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.smart-assistant-title strong {
    font-size: 16px;
    display: block;
}

.smart-assistant-status {
    font-size: 12px;
    opacity: 0.8;
}

.smart-assistant-controls {
    display: flex;
    gap: 8px;
}

.smart-assistant-minimize,
.smart-assistant-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    transition: background-color 0.2s ease;
}

.smart-assistant-minimize:hover,
.smart-assistant-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   Messages Area
   ========================================================================== */

.smart-assistant-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.smart-assistant-messages::-webkit-scrollbar {
    width: 6px;
}

.smart-assistant-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.smart-assistant-messages::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.smart-assistant-message {
    max-width: 80%;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.smart-assistant-message.smart-assistant-message-visible {
    opacity: 1;
    transform: translateY(0);
}

.smart-assistant-message.smart-assistant-user {
    align-self: flex-end;
}

.smart-assistant-message.smart-assistant-assistant {
    align-self: flex-start;
}

.smart-assistant-message-content {
    padding: 12px 16px;
    border-radius: 18px;
    word-wrap: break-word;
}

.smart-assistant-user .smart-assistant-message-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.smart-assistant-assistant .smart-assistant-message-content {
    background: white;
    color: #333;
    border: 1px solid #e1e8ed;
}

.smart-assistant-message.smart-assistant-error .smart-assistant-message-content {
    background: #fee;
    border-color: #fcc;
    color: #c33;
}

.smart-assistant-cached {
    font-size: 11px;
    color: #666;
    margin-top: 4px;
    font-style: italic;
}

/* ==========================================================================
   Typing Indicator
   ========================================================================== */

.smart-assistant-typing .smart-assistant-message-content {
    padding: 16px;
}

.smart-assistant-typing-indicator {
    display: flex;
    gap: 4px;
    align-items: center;
}

.smart-assistant-typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #bbb;
    animation: typing 1.4s infinite ease-in-out;
}

.smart-assistant-typing-indicator span:nth-child(1) {
    animation-delay: -0.32s;
}

.smart-assistant-typing-indicator span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ==========================================================================
   Input Area
   ========================================================================== */

.smart-assistant-input {
    padding: 16px;
    background: white;
    border-top: 1px solid #e1e8ed;
}

.smart-assistant-input-group {
    display: flex;
    gap: 8px;
    align-items: center;
}

.smart-assistant-input input {
    flex: 1;
    border: 1px solid #e1e8ed;
    border-radius: 20px;
    padding: 10px 16px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.smart-assistant-input input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}

.smart-assistant-input button {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.smart-assistant-input button:hover {
    transform: scale(1.05);
}

.smart-assistant-input button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ==========================================================================
   Theme Variants
   ========================================================================== */

/* Dark Theme */
.smart-assistant-dark .smart-assistant-chat {
    background: #2d3748;
    border-color: #4a5568;
}

.smart-assistant-dark .smart-assistant-messages {
    background: #1a202c;
}

.smart-assistant-dark .smart-assistant-assistant .smart-assistant-message-content {
    background: #4a5568;
    color: #e2e8f0;
    border-color: #718096;
}

.smart-assistant-dark .smart-assistant-input {
    background: #2d3748;
    border-color: #4a5568;
}

.smart-assistant-dark .smart-assistant-input input {
    background: #4a5568;
    border-color: #718096;
    color: #e2e8f0;
}

.smart-assistant-dark .smart-assistant-input input::placeholder {
    color: #a0aec0;
}

/* Minimal Theme */
.smart-assistant-minimal .smart-assistant-chat {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #e1e8ed;
}

.smart-assistant-minimal .smart-assistant-header {
    background: #f8f9fa;
    color: #333;
}

.smart-assistant-minimal .smart-assistant-toggle {
    background: #333;
}

/* Classic Theme */
.smart-assistant-classic .smart-assistant-chat {
    border-radius: 4px;
}

.smart-assistant-classic .smart-assistant-toggle {
    border-radius: 4px;
    background: #007bff;
}

.smart-assistant-classic .smart-assistant-header {
    background: #007bff;
}

.smart-assistant-classic .smart-assistant-message-content {
    border-radius: 4px;
}

/* ==========================================================================
   Mobile Responsive - Ribbon
   ========================================================================== */

@media (max-width: 768px) {
    .smart-assistant-ribbon-content {
        padding: 10px 15px;
        gap: 10px;
    }

    .smart-assistant-ribbon-text {
        font-size: 14px;
        min-width: auto;
    }

    .smart-assistant-ribbon-btn {
        padding: 6px 15px;
        font-size: 14px;
    }

    .smart-assistant-ribbon-left,
    .smart-assistant-ribbon-right {
        display: none; /* Hide side ribbons on mobile */
    }

    .smart-assistant-ribbon-bottom,
    .smart-assistant-ribbon-top {
        min-height: 50px;
    }

    /* Make admin bar more compact on mobile */
    .admin-notification-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .admin-notification-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .smart-assistant-ribbon-text {
        font-size: 12px;
        line-height: 1.3;
    }

    .smart-assistant-ribbon-btn {
        padding: 5px 12px;
        font-size: 12px;
    }

    .smart-assistant-ribbon-icon {
        font-size: 20px;
    }

    .admin-notification-text {
        font-size: 12px;
    }

    .admin-notification-actions button {
        padding: 4px 8px;
        font-size: 11px;
    }
}

/* ==========================================================================
   Mobile Responsive - General
   ========================================================================== */

@media (max-width: 768px) {
    .smart-assistant-chat {
        width: calc(100vw - 40px);
        height: calc(100vh - 40px);
        max-width: 100%;
        max-height: 100%;
        position: fixed;
        top: 20px;
        left: 20px;
        right: 20px;
        bottom: 20px;
        margin: 0;
    }

    .smart-assistant-toggle {
        width: 50px;
        height: 50px;
    }

    .smart-assistant-icon svg {
        width: 24px;
        height: 24px;
    }

    .smart-assistant-message {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .smart-assistant {
        bottom: 10px;
        right: 10px;
    }

    .smart-assistant-chat {
        width: calc(100vw - 20px);
        height: calc(100vh - 20px);
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}

/* ==========================================================================
   Feedback System
   ========================================================================== */

.smart-assistant-feedback {
    margin-top: 8px;
}

.smart-assistant-feedback-buttons {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.smart-assistant-feedback-btn {
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 12px;
}

.smart-assistant-feedback-btn:hover {
    background: #f8f9fa;
    color: #495057;
}

.smart-assistant-feedback-btn.positive:hover {
    color: #28a745;
}

.smart-assistant-feedback-btn.negative:hover {
    color: #dc3545;
}

.smart-assistant-feedback-form {
    margin-top: 8px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.smart-assistant-feedback-form textarea {
    width: 100%;
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 8px;
    font-size: 12px;
    resize: vertical;
    font-family: inherit;
}

.smart-assistant-feedback-actions {
    margin-top: 8px;
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.smart-assistant-feedback-actions button {
    padding: 4px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s ease;
}

.smart-assistant-feedback-actions .btn-submit {
    background: #007bff;
    border-color: #007bff;
    color: white;
}

.smart-assistant-feedback-actions .btn-submit:hover {
    background: #0056b3;
    border-color: #0056b3;
}

.smart-assistant-feedback-actions .btn-cancel:hover {
    background: #f8f9fa;
}

.smart-assistant-feedback-thanks {
    text-align: center;
    color: #28a745;
    font-size: 12px;
    padding: 8px;
    background: #d4edda;
    border-radius: 4px;
    border: 1px solid #c3e6cb;
}

/* ==========================================================================
   Learning Indicators
   ========================================================================== */

.smart-assistant-learning-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    animation: learning-pulse 2s infinite;
}

@keyframes learning-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* ==========================================================================
   Contact Form Styles
   ========================================================================== */

.smart-assistant-contact-suggestion {
    margin-top: 12px;
}

.smart-assistant-contact-prompt {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.smart-assistant-contact-prompt p {
    margin: 0 0 12px 0;
    font-weight: 500;
    color: #1565c0;
}

.smart-assistant-contact-btn {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.smart-assistant-contact-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(33, 150, 243, 0.3);
}

.smart-assistant-contact-form {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-top: 12px;
}

.contact-form-header {
    margin-bottom: 16px;
    text-align: center;
}

.contact-form-header h4 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 16px;
}

.contact-form-header p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form label {
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
    color: #333;
    font-size: 13px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2196f3;
    box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

.form-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}

.form-actions button {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-actions .btn-primary {
    background: #2196f3;
    border: 1px solid #2196f3;
    color: white;
}

.form-actions .btn-primary:hover {
    background: #1976d2;
    border-color: #1976d2;
}

.form-actions .btn-secondary {
    background: #6c757d;
    border: 1px solid #6c757d;
    color: white;
}

.form-actions .btn-secondary:hover {
    background: #5a6268;
    border-color: #545b62;
}

.contact-success {
    text-align: center;
    padding: 20px;
}

.success-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.contact-success h4 {
    color: #28a745;
    margin: 0 0 12px 0;
}

.contact-success p {
    color: #666;
    margin: 0 0 8px 0;
}

.contact-success small {
    color: #999;
    font-family: monospace;
}

/* ==========================================================================
   Integration Styles
   ========================================================================== */

.smartshoutbox-help-btn {
    margin-left: 8px;
    font-size: 12px;
}

.smartshoutbox-help-btn i {
    margin-right: 4px;
}

/* ==========================================================================
   Accessibility
   ========================================================================== */

.smart-assistant-toggle:focus,
.smart-assistant-minimize:focus,
.smart-assistant-close:focus,
.smart-assistant-input button:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.smart-assistant-input input:focus {
    outline: none;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .smart-assistant,
    .smart-assistant-message,
    .smart-assistant-toggle,
    .smart-assistant-minimize,
    .smart-assistant-close,
    .smart-assistant-input button {
        transition: none !important;
    }

    .smart-assistant-notification,
    .smart-assistant-typing-indicator span {
        animation: none !important;
    }
}

/* High contrast support */
@media (prefers-contrast: high) {
    .smart-assistant-chat {
        border-width: 2px;
    }

    .smart-assistant-message-content {
        border-width: 2px;
    }
}
