.skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.skill-bubble {
    display: inline-block;
    background-color: #e0f2f7;
    color: #00838f;
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    border-radius: 1rem;
    margin-bottom: 0.25rem;
    border: 1px solid #b2ebf2;
    transition: background-color 0.3s ease;
}

.skill-bubble:hover {
    background-color: #b2ebf2;
    cursor: default;
}

.mlops-section {
    margin-bottom: 2rem;
}

.mlops-highlight-bubble {
    display: flex;
    align-items: center;
    background-color: #f0f8ff;
    color: #4682b4;
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    margin-bottom: 0.5rem;
    width: fit-content;
}

.mlops-highlight-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.mlops-highlight-text {
    font-weight: bold;
    font-style: italic;
}

.mlops-highlight-bubble:hover {
    transform: scale(1.05);
}

.chatbot-widget {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 15px;
    margin-top: 20px;
    width: 80%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

#chatbot-conversation {
    height: 300px;
    overflow-y: auto;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    border-radius: 3px;
}

.chatbot-message {
    padding: 8px;
    margin-bottom: 8px;
    border-radius: 5px;
    clear: both;
}

.chatbot-message-with-avatar.user .chatbot-message-content {
    background-color: #e0f7fa;
    text-align: right;
    float: right;
}

.chatbot-message-with-avatar.system .chatbot-message-content {
    background-color: #f0f0f0;
    text-align: left;
    float: left;
}

.chatbot-message-with-avatar {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.chatbot-avatar {
    width: 50px;
    height: 50px;
    border-radius: 10%;
    margin-right: 10px;
    object-fit: cover;
}

.chatbot-message-content {
    flex-grow: 1;
    padding: 8px;
    border-radius: 5px;
    margin-top: 0;
}

.chatbot-message-with-avatar.user {
    flex-direction: row-reverse;
}

.chatbot-message-with-avatar.user .chatbot-avatar {
    margin-left: 10px;
    margin-right: 0;
}

.chatbot-input-area {
    display: flex;
}

#chatbot-input {
    flex-grow: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-right: 10px;
}

#chatbot-send {
    padding: 8px 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

#chatbot-send:hover {
    background-color: #0056b3;
}

.chatbot-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(200, 200, 200, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    z-index: 20;
}

.chatbot-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #007bff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.chatbot-terminal-view {
    background-color: #212121;
    color: #00ff00;
    border-radius: 5px;
    margin-top: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
    font-size: 0.75rem;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    background-color: #333;
    color: #f0f0f0;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #444;
    font-size: 0.9rem;
    font-weight: bold;
}

.terminal-header i {
    margin-right: 8px;
    color: #f0f0f0;
}

.terminal-status {
    font-style: italic;
    color: #90ee90;
}

#terminal-output {
    white-space: pre-wrap;
    word-wrap: break-word;
    padding: 10px 15px;
    height: 200px;
    overflow-y: auto;
    margin: 0;
    line-height: 1.4;
    text-align: left;
}

#terminal-output::-webkit-scrollbar {
    width: 8px;
}

#terminal-output::-webkit-scrollbar-track {
    background: #333;
    border-radius: 4px;
}

#terminal-output::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 4px;
}

#terminal-output::-webkit-scrollbar-thumb:hover {
    background: #777;
}

.terminal-level-basic {
    color: #00ff00;
}

.terminal-level-status {
    color: #FFFF00;
}

.terminal-level-warning {
    color: #FFA500;
}

.terminal-level-alert {
    color: #FF0000;
}

.terminal-tag {
    font-weight: bold;
    margin-right: 5px;
}