.book-now-btn {
  display: inline-block;
  background-color: #007bff;
  color: #fff !important;
  padding: 10px 16px;
  margin-top: 10px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.book-now-btn:hover {
  background-color: #0056b3;
}

#chatbot-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #007bff;
  color: #fff;
  padding: 14px 22px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  z-index: 9999;
  transition: all 0.3s ease;
}

#chatbot-toggle:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

#chatbot-widget {
    display: none;
    /* your existing styles */
}

#chatbot-widget.chatbot-open {
    display: block;
}

p {
    padding: 0px;
    margin: 5px;
}
/* Chatbot Toggle Button */
#chatbot-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #007bff;
    color: white;
    font-size: 24px;
    padding: 10px 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Chatbot Container */
#chatbot-widget {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 320px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-family: 'Segoe UI', sans-serif;
    z-index: 10000;
    display: none;
}

/* Header */
#chatbot-header {
    background: #007bff;
    color: white;
    padding: 10px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chatbot-header span:last-child {
    cursor: pointer;
    font-size: 20px;
}

/* Body */
#chatbot-body {
    padding: 10px;
}

/* Form Inputs */
#chatbot-user-form label {
    display: block;
    margin: 10px 0 4px;
    font-weight: 500;
}

#chatbot-user-form input,
#chatbot-user-form select,
#chatbot-user-form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#chatbot-user-form textarea {
    resize: none;
}

/* Submit Button */
#chatbot-user-form button[type="submit"] {
    margin-top: 15px;
    width: 100%;
    background-color: #4A90E2;
    color: white;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#chatbot-user-form button[type="submit"]:hover {
    background-color: #357ABD;
}

/* Conversation Panel */
#chatbot-conversation {
    padding: 10px;
    max-height: 380px;
    overflow-y: auto;
}

.chat-messages {
    margin-bottom: 10px;
}

/* Quick replies (if any) */
.quick-replies button {
    margin: 5px 5px 0 0;
    padding: 6px 12px;
    border: none;
    background: #eee;
    border-radius: 4px;
    cursor: pointer;
}

.chat-option:hover {
  color: white;
}
.user-message {
  line-height: 1.6;
  font-size: 14px;
}

.user-message strong {
  color: #333;
}

.user-message strong {
  color: #222;
  display: inline-block;
  margin-bottom: 5px;
}

.user-message em {
  color: #a00;
  font-style: italic;
}

.chatbot-feature-table {
  width: 100%;
  margin-top: 10px;
  border-collapse: collapse;
  font-size: 14px;
}

.chatbot-feature-table th,
.chatbot-feature-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

.chatbot-feature-table th {
  background-color: #f2f2f2;
  font-weight: bold;
}

/* General Chatbot Styles */
#chatbot-widget {
    position: fixed;
    bottom: 45px;
    right: 30px;
    width: 300px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none; /* Hidden by default */
    z-index: 9999;
    font-family: Arial, sans-serif;
}
@media only screen and (max-width: 768px) {
    
    #chatbot-widget {
    position: fixed;
    bottom: 45px;
    right: 30px;
    width: 300px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none; /* Hidden by default */
    z-index: 9999;
    font-family: Arial, sans-serif;
}
}
#chatbot-header {
    background-color: #0073e6;
    padding: 10px;
    color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

#chatbot-close {
    cursor: pointer;
    font-size: 20px;
    color: #fff;
}

#chatbot-toggle {
    position: fixed;
    bottom: 45px;
    right: 30px;
    font-size: 32px;
    background-color: #0073e6;
    color: #fff;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 9998;
}

#chatbot-toggle:hover {
    background-color: #005bb5;
}

/* Chatbot Form */
#chatbot-form {
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

#chatbot-form label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

#chatbot-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 14px;
}

#chatbot-form button {
    background-color: #0073e6;
    color: #fff;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

#chatbot-form button:hover {
    background-color: #005bb5;
}

/* Chatbot Conversation Area */
#chatbot-conversation {
    padding: 10px 15px;
    height: 380px;
    overflow-y: auto;
    max-height: 400px;
    background-color: #f9f9f9;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    flex-direction: column; /* Stack messages vertically */
    gap: 10px; /* Space between each message */
}
/* Mobile-specific adjustments */
@media (max-width: 768px) {
    #chatbot-conversation {
        height: 450px;           /* Adjust height to fit mobile view */
        max-height: none;       /* Let it grow based on viewport height */
        padding: 8px 12px;      /* Slightly smaller padding for tight screens */
        gap: 8px;               /* Slightly smaller spacing between messages */
    }
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    max-height: 350px;
    width: 100%;
}
/* Mobile view: Adjust if needed */
@media (max-width: 768px) {
    .chat-messages {
        max-height: 450px; /* or keep 350px if that works well */
        padding: 0px;
    }
}

/* Bot and User Message Styling */
.bot-message, .user-message {
    padding: 10px;
    border-radius: 8px;
    max-width: 80%;
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    margin-bottom: 10px;
    clear: both; /* Ensures messages don’t float next to each other */
}

.bot-message {
    background-color: #e5e5e5 !important;
    color: #000;
    align-self: flex-start;
}

.user-message {
    background-color: #e1e1e1;
    color: black;
    align-self: flex-end;
}

.chat-option {
    background-color: #0073e6;
    color: white;
    padding: 5px 10px;
    margin: 0px 0;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    display: inline-block;
}

.chat-option-green {
    background-color: #1aa54a;
    color: white;
    padding: 5px 10px;
    margin: 0px 0;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    display: inline-block;
}
.chat-option-purple {
    background-color: #7D5EA2;
    color: white;
    padding: 5px 10px;
    margin: 0px 0;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    display: inline-block;
}
.chat-option:hover {
    background-color: #1AA54A !important;
}

.chat-input-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

#chatbot-user-input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 14px;
    margin-top: 10px;
}

#chatbot-send {
    background-color: #0073e6;
    color: white;
    padding: 10px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

#chatbot-send:hover {
    background-color: #005bb5;
}

/* Scrollbar styling */
#chatbot-conversation::-webkit-scrollbar {
    width: 6px;
}

#chatbot-conversation::-webkit-scrollbar-thumb {
    background-color: #0073e6;
    border-radius: 3px;
}

#chatbot-conversation::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    #chatbot-widget {
        width: 260px;
    }
        #chatbot-widget {
    position: fixed;
    bottom: 45px;
    right: 30px;
    width: 300px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none; /* Hidden by default */
    z-index: 9999;
    font-family: Arial, sans-serif;
}

    #chatbot-header {
        font-size: 14px;
    }

    .bot-message, .user-message {
        font-size: 13px;
    }
}

/* Back button styling */
.back-to-main-menu {
    background-color: #f0f0f0 !important;
    color: #333 !important;
    border: 1px solid #ddd !important;
    margin-top: 10px;
}

.back-to-main-menu:hover {
    background-color: #e0e0e0 !important;
}

/* Make sure quick replies container can scroll if needed */
.quick-replies {
    max-height: 200px;
    overflow-y: auto;
    padding: 10px;
}

/* Chatbot Toggle Button */
#chatbot-toggle {
    position: fixed;
    bottom: 45px;
    right: 30px;
    background: #4a90e2;
    color: #fff;
    padding: 14px 16px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background 0.3s;
}

#chatbot-toggle:hover {
    background: #357abd;
}

/* Chatbot Widget */
#chatbot-widget {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 360px;
    max-height: 650px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 10000;
    animation: fadeInUp 0.3s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Chatbot Header */
#chatbot-header {
    background: #4a90e2;
    color: #fff;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Chatbot Body */
#chatbot-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    font-size: 15px;
    background: #f7f9fb;
}

/* Chat Messages */
.bot-message, .user-message {
    margin-bottom: 0px;
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
    ALIGN-CONTENT: SPACE-BETWEEN;
    flex-wrap: wrap;
}

.bot-message img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    margin-right: 10px;
}

.bubble {
    background: #ffffff;
    padding: 10px 14px;
    border-radius: 18px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    max-width: 90%;
}

.user-message {
    justify-content: flex-end;
}

.user-message .bubble.user {
    background: #e2f0ff;
    color: #333;
}

/* Quick Reply Buttons */
.quick-replies {
    margin-top: 10px;
}

.quick-replies button {
    background: #fff;
    border: 1px solid #4a90e2;
    color: #4a90e2;
    border-radius: 8px;
    margin: 5px 0;
    padding: 8px 12px;
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: all 0.2s;
}

.quick-replies button:hover {
    background: #4a90e2;
    color: #fff;
}

/* Chatbot Form */
#chatbot-form {
    display: block;
    padding: 0px;
    text-align: left;
    font-size: 14px;
    color: #333;
}

#chatbot-form h3 {
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

#chatbot-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

#chatbot-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
    background-color: #f7f9fb;
}

#chatbot-form button {
    background-color: #4a90e2;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

#chatbot-form button:hover {
    background-color: #357abd;
}

/* Hide the conversation until the form is submitted */
#chatbot-conversation {
    display: none;
}

/* Adjusting mobile responsiveness */
@media (max-width: 500px) {
        #chatbot-widget {
    position: fixed;
    bottom: 45px;
    right: 30px;
    width: 300px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none; /* Hidden by default */
    z-index: 9999;
    font-family: Arial, sans-serif;
}
    #chatbot-widget {
        width: 88%;
        max-height: 100%;
        bottom: 60px;
    }

    #chatbot-form h3 {
        font-size: 14px;
    }

    #chatbot-form label {
        font-size: 12px;
    }

    #chatbot-form input {
        font-size: 12px;
    }

    #chatbot-form button {
        font-size: 14px;
    }

    #chatbot-toggle {
        font-size: 18px;
    }
}
.small-title {
    font-size: 14px;  /* Small font size for h5 elements */
}
.select-wrapper {
    display: none;
}