/* Styling for the container of the agent title */
#train-ai-agent-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

/* Styling for the placeholder text */
#train-ai-agent-text-placeholder {
    font-size: 45px;
    font-weight: bold;
    color: #333;
    display: inline-block;
    padding: 20px 30px;
    background-color: rgba(255, 255, 255, 0.5); /* semi-transparent white background */
    border-radius: 5px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px); /* Apply blur effect to the background */
    transition: color 0.3s ease;
}