/*Chatbot*/
/* Chatbot Toggle Button */
#chatbot-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.replyIcon {
    display: block !important;
    width: 70px !important;
    height: 50px !important;
}

/* Chatbot Container */
#chatbot-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    flex-direction: column;
}

/* Chatbot Header */
#chatbot-header {
    background: #007bff;
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 5px 5px 0 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}

/* Close Button */
#close-chatbot {
    position: absolute;
    right: 10px;
    top: 5px;
    background: red;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
}

#chatbot-options {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

.chat-option-btn {
    flex: 1;
    min-width: 48%;
    padding: 8px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
}

.chat-option-btn:hover {
    background: #ddd;
}

/* Chat Messages */
#chatbot-messages {
    height: 300px;
    overflow-y: auto;
    border-bottom: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    max-height: 400px;
    padding: 10px;
}

/* Message Styling */
.chat-message {
    max-width: 80%;
    padding: 8px;
    border-radius: 10px;
    margin: 5px;
    font-size: 14px;
}

/* AI Messages (Left Side) */
.bot-message {
    background: #f1f1f1;
    align-self: flex-start;
}

/* User Messages (Right Side) */
.user-message {
    background: #007bff;
    color: white;
    align-self: flex-end;
    text-align: right;
}

/* Chat Input */
#chatbot-input {
    width: calc(100% - 60px);
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Send Button */
#send-message {
    width: 50px;
    padding: 5px;
    margin-left: 5px;
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* Chatbot End*/


#customDomainButtons {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dbtn {
    padding: 10px 20px;
    margin: 0;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dbtn-active {
    background-color: #30a9f4;
    color: white;
}

.dbtn-inactive {
    background-color: white;
    color: #30a9f4;
    border: 1px solid #30a9f4;
}

.find-domain {
    border-radius: 50px 0 0 50px;
}

.generate-domain {
    border-radius: 0 50px 50px 0;
}

.input-box,
.text-box {
    margin-top: 20px;
}

input,
textarea {
    padding: 8px;
    width: 300px;
    font-size: 16px;
}

.icon {
    margin-right: 5px;
}


/*domain suggest*/
.suggestions-list {
    margin-top: 15px;
}

.suggestion-item {
    margin: 5px 0;
    padding: 10px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
}

input[type="text"] {
    padding: 10px;
    width: 70%;
    margin-right: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

#generateSuggestions,
.show_more_btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.show-more-div {
    text-align: center;
}

#generateSuggestions:hover,
.show_more_btn:hover {
    background-color: #0056b3;
}

.domain-textarea {
    width: 100%;
    height: 100px;
    margin: 15px 0;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 16px;
    outline: none;
}

.generate-btn {
    background-color: #30a9f4;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.generate-btn:hover {
    background-color: #1c8cd6;
}

.suggestions-error {
    color: red;
    font-size: 14px;
    display: block;
    text-align: left;
    margin-left: 5px;
}

/* .domain-results {
    max-height: 500px;
    overflow: auto;
} */

body .domain-item {
    display: flex;
    align-items: center;
    padding: 5px 15px;
    margin: 5px 0;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.domain-results .domain-name {
    text-align: left;
    width: 100%;
    word-wrap: break-word;
    max-width: 480px;
}

.domain-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
    margin: 5px 0;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.domain-name {
    font-weight: bold;
    margin-right: 10px;
    font-size: 16px;
}

.domain-status {
    padding: 0px 5px;
    border-radius: 12px;
    color: white;
    font-size: 12px;
}

.badge-success {
    background-color: #28a745;
}

.badge-danger {
    background-color: #dc3545;
}

/*end domain suggest*/

/*recommendations*/
.recommendations-domain-and-product h2 {
    text-align: center;
    margin-bottom: 15px;
}

.recommendation-slider {
    margin-top: 20px;
}

.recommendation-card {
    background: #ffffff;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.recommendation-card h3 {
    margin: 10px 0;
}

.recommendation-card p {
    margin: 5px 0;
}

.recommendation-card .btn {
    margin-top: 10px;
}

.slick-dots {
    margin-top: 10px;
}

/*end recommendations*/


.domainSuggestDiv .suggestions-error {
    display: block;
    width: 100%;
    margin-bottom: 5px;
}

table.table.table-list.chatbot_table th,
table.table.table-list.chatbot_table td {
    padding: 10px 4px;
    vertical-align: middle;
    font-size: 12px;
}

table.table.table-list.chatbot_table {

    margin: 20px 0px;

    border: transparent !important;

}

table.table.table-list.chatbot_table th {

    border-top: transparent !important;

    background-color: #f5f5f5 !important;

    border-bottom: transparent !important
}

#close-chatbot img {

    width: 20px;

}

#close-chatbot {

    top: 2px;

    background: transparent;

}

.table-list.chatbot_table td:first-child {
    text-align: left;
}
.table-list.chatbot_table td {
    text-align: center;
}

.chatbot_table .service-row {
    cursor: pointer;
}