/* Chatbot Action Buttons Styling */

.action-buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #0d6efd;
}

.action-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.action-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Different button types with colors */
.action-btn-practice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.action-btn-practice:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.action-btn-review_spaced {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: #333;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(250, 112, 154, 0.3);
}

.action-btn-review_spaced:hover {
    background: linear-gradient(135deg, #fee140 0%, #fa709a 100%);
    box-shadow: 0 6px 12px rgba(250, 112, 154, 0.4);
}

.action-btn-review {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.action-btn-review:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.action-btn-example {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.action-btn-example:hover {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
}

.action-btn-navigate {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: #333;
}

.action-btn-navigate:hover {
    background: linear-gradient(135deg, #38f9d7 0%, #43e97b 100%);
}

/* Chatbot message styling improvements for code blocks */
.bot-message code {
    background-color: #f8f9fa;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    color: #d63384;
}

.bot-message pre {
    background-color: #282c34;
    color: #abb2bf;
    padding: 12px;
    border-radius: 6px;
    overflow-x: auto;
    margin: 8px 0;
}

.bot-message pre code {
    background-color: transparent;
    padding: 0;
    color: #abb2bf;
}

.bot-message strong {
    font-weight: 600;
    color: #212529;
}

.bot-message em {
    font-style: italic;
    color: #6c757d;
}
