/* Styles for the chatbot threads listing */
.um-field ul {
    list-style-type: none;
    padding: 0;
}

.um-field ul li {
    background-color: #f9f9f9;
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.um-field ul li:hover {
    background-color: #e9e9e9;
}

.um-field h3 {
    margin-bottom: 15px;
    font-size: 1.5em;
    color: #333;
}

/* Styles for the chatbot threads table */
.chatbot-threads-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.chatbot-threads-table th, .chatbot-threads-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.chatbot-threads-table th {
    background-color: #f2f2f2;
    color: #333;
}

.chatbot-threads-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.chatbot-threads-table tr:hover {
    background-color: #e9e9e9;
}

.chatbot-threads-table a {
    color: #0073aa;
    text-decoration: none;
}

.chatbot-threads-table a:hover {
    text-decoration: underline;
}

.dashicons {
    font-size: 20px;
} 

#um_account_submit_chatbot_threads {
    display: none;
}

body div.wpforms-container-full .wpforms-form input[type=submit], body div.wpforms-container-full .wpforms-form button[type=submit], body div.wpforms-container-full .wpforms-form .wpforms-page-button {
    background-color: #FAD400 !important;
}