gt/*
Theme Name: Modern Subscriber Dashboard
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: A modern dashboard interface for logged-in subscribers.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: modern-subscriber-dashboard
Tags: dashboard, subscriber, custom-template
*/
/* --- Global & Reset --- */


a {
    color: #0073AA;
    text-decoration: none;
}
li {font-family: inter !important; font-size: 15px;}
.hide {display: none;}

a:hover {
    text-decoration: underline;
}

/* Ensure body background doesn't interfere if using a light theme */
body, p, div  {
    font-family: 'Inter', sans-serif !important;  font-size: 14px !important; line-height: 19px !important; 

}


fieldset {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

legend {
    font-weight: 600;
    padding: 0 10px;
}

label {
    display: block; margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 500; font-size: 14px;
}

input, textarea, select {
    /*! width: 100%; */
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.helpertext {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.radio-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

#systemNumber,#smsChatPhoneNumber {padding: 10px; font-weight: normal;}

.radio-group label {
    margin: 0;
    display: flex;
    align-items: center;
}

.button-primary {
    background: #41c36d;
    color: #fff;
    padding: 7px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}



.saveconfig {
    text-align: right;
}

* {
    box-sizing: border-box;
}






        /* Custom scrollbar for webkit browsers */
        .sidebar-scroll::-webkit-scrollbar {
            width: 6px;
        }
        .sidebar-scroll::-webkit-scrollbar-track {
            background: #2d3748; /* Tailwind gray-800 */
        }
        .sidebar-scroll::-webkit-scrollbar-thumb {
            background: #4a5568; /* Tailwind gray-600 */
            border-radius: 3px;
        }
        .sidebar-scroll::-webkit-scrollbar-thumb:hover {
            background: #718096; /* Tailwind gray-500 */
        }
        /* Basic styles for dropdown */
        .dropdown-menu {
            display: none; /* Hidden by default */
            position: absolute;
            background-color: white;
            min-width: 200px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 50; /* Ensure it's above other content */
            border-radius: 0.375rem; /* rounded-md */
        }
        .dropdown-menu a, .dropdown-menu div {
            color: black;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
        }
        .dropdown-menu a:hover {
            background-color: #f1f1f1;
        }
	
	
        /* Active menu item style */
        .sidebar-nav li.current-menu-item > a {
            background-color: #4A5568; /* gray-600 */
            color: #FFFFFF; /* white */
            font-weight: 600; /* semibold */
        }
        .sidebar-nav li > a:hover {
            background-color: #2D3748; /* gray-800 for hover, darker than active */
        }
         body {
            font-family: 'Inter', sans-serif; /* Using Inter font as per guidelines */
        }
	

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

#userDropdownMenu a {
    display: block;
    px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 transition-colors duration-150;
}
.sidebar-nav a {
    text-decoration: none !important; 
}


.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}



.saveconfig {
    position: fixed;
    top: 9px; background: white; padding: 15px; padding-left: 200px;
    right: 26px;  z-index: 999;
}

.tab-link {
    padding: 10px 20px;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 500;
    color: #666;
    transition: all 0.3s;
}

.tab-link.active {
    color: #0044cc;
    border-bottom: 2px solid #0044cc;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}




/* Style Input Fields, Textareas, and Selects */
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper textarea,
.gform_wrapper select {
    width: 100%; /* Make fields full-width */
    border: 1px solid #ccc; /* Lighter, solid border */
    border-radius: 5px; /* Slightly rounded corners */
    box-shadow: none; /* Remove default shadows if any */
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition on focus */
    box-sizing: border-box; /* Ensure padding doesn't break layout */
    background-color: #fff; /* Ensure white background */
    
}

.gform_description {font-size: 15px; padding-bottom: 10px;}

/* Style Placeholder Text */
.gform_wrapper ::placeholder {
    color: #999; /* Lighter placeholder text */
    opacity: 1; /* Ensure visibility */

}
.gform_wrapper  {
padding: 30px !important;

}




/* Style Fields on Focus */
.gform_wrapper input[type="text"]:focus,
.gform_wrapper input[type="email"]:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
    border-color: #007bff; /* Change border color on focus (use your site's primary color) */
    outline: none; /* Remove default outline */
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25); /* Add a subtle glow (use your site's primary color) */
}

/* Style Field Descriptions */
.gform_wrapper .gfield_description {
    font-size: 0.85em; /* Smaller font size */
    color: #555; /* Slightly darker grey for readability */
    margin-top: 8px; /* Space it from the input */
    padding-left: 5px;
}

/* Style Labels (if you decide to show them) */
.gform_wrapper .gfield_label {
    font-weight: 600; /* Bolder labels */
    margin-bottom: 8px; /* Space between label and input */
    display: block; /* Ensure it's on its own line */
}

/* Hide the honeypot container visually, but keep it accessible for its purpose */
.gform_wrapper .gform_validation_container {
    position: absolute !important;
    left: -9000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Style the Submit Button (You'll need to know its ID or class, often #gform_submit_button_5) */
.gform_wrapper .gform_footer input[type="submit"] {
    background-color: #007bff; /* Your primary color */
    color: #fff; /* White text */
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100% !important;; /* Don't make button full-width unless desired */
    display: inline-block;
}

.gform_wrapper .gform_footer input[type="submit"]:hover {
    background-color: #0056b3; /* Darker shade on hover */
}


.metric-box {
  text-decoration: none !important;
  color: inherit;
}

.metric-box:hover {
  text-decoration: none !important; 
}

.metric-box h3,
.metric-box .metric-value {
  text-decoration: none !important;
}

#systemNumber:disabled {
  border: 1px solid grey;
  outline: none; padding: 2px;
}

.upgrade-button {
    display: inline-block;
    background-color: #28a745;
    color: white !important;
    padding: 5px 17px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s ease;
}


.dashboard-sidebar .logo {
  background-color: #376699;
  color: #fff;
  padding: 20px 0px 20px 20px;
  font-size: 24px; margin-bottom: 15px;
  font-weight: 700;
  display: inline-block;
}
.sublogo {
 font-size: 12px; font-weight: 400; margin-top: -5px;
}


/* --- Dashboard Layout --- */
.subscriber-dashboard-wrapper {

    min-height: 100vh;
  
}


      .subscription-save-btn,
      .subscription-send-btn {
        font-size:14px; padding:8px 16px; border:none; border-radius:0px; cursor:pointer; margin-left:8px;background-color: #41c36d;
  color: #ffffff;
      }
   

.subscription-send-btn {
  background-color: #eeeeee;
  color: #333333;
}
.subscription-send-btn:hover {
  background-color: #dddddd;
}

.gform_button {background: #6eb16d !important; width: 100%; display: block;  }


.dashboard-sidebar {
    width: 220px; /* Slightly wider for a more modern feel, adjust as needed */
    background-color: #FFFFFF; /* CHANGE: White background for the sidebar */
    border-right: 1px solid #d1d1d1; /* ADD: Subtle border to separate sidebar from content */
    padding: 0px 0; /* Adjust padding as needed */
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 100;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Optional: Softer shadow, or remove if too much */
}



.dashboard-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-nav li a {
    display: block;
    padding: 10px 20px; /* Adjust padding for better spacing */
    color: #555555;    /* CHANGE: Default link color to a medium gray */
    font-weight: 500;  /* ADD: Medium font weight for a cleaner look */
    border-left: 3px solid transparent;
    transition: all 0.2s ease-in-out;
    font-size: 15px;
    text-decoration: none; /* Ensure no underline by default */
}

.dashboard-nav li a:hover {
    color: #0073AA; /* CHANGE: Link hover color (can be your primary brand color) */
    background-color: #F0F0F0; /* ADD: Subtle background hover for links */
    border-left-color: #0073AA; /* Optional: Accent color on hover */
    text-decoration: none;
}
.box-outline {padding-left: 50px; padding-right: 20px; font-size: 14px;}

.dashboard-nav li.current-menu-item a,
.dashboard-nav li a.active {
    color: #376699; /* CHANGE: Active link color (can be your primary brand color) */
    background-color: #F0F0F0; /* ADD: Lighter background for active/current link */
    border-left-color: #0073AA; /* CHANGE: Accent color for active/current link */
    font-weight: 600; /* ADD: Bolder font for active link */
}

.dashboard-nav a i {
    
    width: 21px;
    margin-right: 0px; /* ADD: Space between icon and text */
    color: #777777; /* CHANGE: Icon color */
}

.dashboard-nav li.current-menu-item a i,
.dashboard-nav li a.active i,
.dashboard-nav li a:hover i {
    color: #0073AA; /* CHANGE: Icon color for active/hover states */
}

.sidebar-footer {
    margin-top: auto;
    padding: 0px !important;
    border-top: 1px solid #d1d1d1; /* CHANGE: Lighter border color */

}

.sidebar-footer .dashboard-nav ul {
    background-color: transparent; /* REMOVE: Background color from footer nav */
}

.sidebar-footer .dashboard-nav li a {
    color: #555555; /* CHANGE: Footer link color */    font-size: 14px !important;
    padding: 10px 20px; /* Consistent padding */
}

.sidebar-footer .dashboard-nav li a:hover {
    color: #0073AA;
    background-color: #F0F0F0;
}

.sidebar-footer .dashboard-nav a i {
    color: #b52c2c; /* CHANGE: Footer icon color */
}

.sidebar-footer .dashboard-nav a:hover i {
    color: #0073AA; /* CHANGE: Footer icon color on hover */
}

.gform_required_legend {display: none;}

/* Adjust main content to align with new sidebar width and design */
.dashboard-content {
    margin-left: 220px; /* Match new sidebar width */
    padding-top: 20px; /* Adjust top padding, e.g., back to 20px or your desired value */
    width: calc(100% - 220px); /* Match new sidebar width */
    background-color: #FFF; 
}

/* Dashboard Title Bar - Adjust if you keep it fixed, or integrate into .dashboard-content */
.dashboard-title-bar {
    background-color: #FFFFFF;
    padding: 15px 40px; /* Consistent padding with content */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Softer shadow */
    position: fixed;
    top: 0;
    left: 220px; /* Align with the new sidebar width */
    right: 0;
    z-index: 90; /* Ensure it's above content but below sidebar if they overlap */
	Display: none;
}

.dashboard-content {
    padding-top: 40px; /* Adjust if you have a fixed title bar, sum of title bar height + some spacing */
}




/* --- Remove old sidebar background --- */
/* Remove or comment out the old gradient/solid color for .dashboard-sidebar: */
/*
.dashboard-sidebar {
    background: linear-gradient(180deg, #4676B0 0%, #1F4A5B 100%);
    background-color: #2E5584;
}
*/




.ginput_container input,
.ginput_container select,
.ginput_container textarea {
    font-size: 14px;
}


.dashboard-content-inner {
    max-width: 1105px;
    margin: 0 auto;
}

body.admin-bar .dashboard-title-bar {
    top: 32px;
    /* Account for the WordPress admin bar height */
}

@media screen and (max-width: 782px) {
    body.admin-bar .dashboard-title-bar {
        top: 46px;
        /* Adjust for mobile admin bar */
    }
}


/* Override/Modernize Shortcode's Tab Button Styles */
.chatbot-config-form .tab-buttons {
    display: flex;
    border-bottom: 2px solid #d1d1d1;
    /* Lighter, thicker border */
    margin-bottom: 25px;
    padding: 0; margin-top: 30px;
    /* Remove padding if any */
}

.tab-link:focus {
    outline: none;
    box-shadow: none;
}

.chatbot-config-form .tab-buttons button {
    background: none;
    /* Remove background */
    color: #555;
    /* Default grey color */
    border: none;
    border-bottom: 2px solid transparent;
    /* Space for active indicator */
    padding: 8px 15px 10px;
    /* Adjust padding */
    cursor: pointer;
    margin-bottom: -2px;
    /* Overlap the container's border */
    font-size: 17px; 
    transition: all 0.2s ease-in-out;
    margin-top: 0;font-size: 15px; white-space: nowrap;
}

.chatbot-config-form .tab-buttons button:hover {
    color: #dc3545;
    /* Blue hover */
    border-bottom-color: #CCC;
    /* Subtle hover border */
}

.chatbot-config-form .tab-buttons button.active {
    background: none;
    /* Ensure no background */
    color: #d43550;
    /* Blue active */
    border-bottom-color: #d43550;
    /* Blue active border */
    border-bottom: 6px solid; font-size: 15px;
}

.chatbot-config-form .tab-content select {
    padding: 5px 7px 6px 9px;
}

/* Override Shortcode's Tab Content Styles */
.chatbot-config-form .tab-content {
    display: none;
    /* Keep default hidden state */
    background: none;
    /* Remove background if using .content-card */
    padding: 0;
    /* Remove padding if using .content-card */
    border: none;
    /* Remove border */
    margin-top: 0;
    /* Remove negative margin */
}

.chatbot-config-form .tab-content.active {
    display: block;
    /* Keep default show state */
}



/* Style legend if you add one */
.chatbot-config-form input[type="text"],
.chatbot-config-form input[type="url"],
.chatbot-config-form textarea {
    min-width: 100%;
    padding: 10px 12px;
    border: 1px solid #e6e6e6;
    /* WP-like border */
    border-radius: 3px;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
 background: #eee;
}

.chatbot-config-form textarea {
    min-height: 70px;
    resize: vertical;
}

.chatbot-config-form input[type="radio"] + label {
    /* Style labels next to radios */
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 500;
    padding-left: 5px;
    color: #000000 !important;
}

.chatbot-config-form fieldset div {
    /* Spacing around radio groups */
    margin-bottom: 19px;
    margin-top: 5px;
}

.chatbot-config-form textarea {
    width: 100%;
}

.chatbot-config-form .radio-group {
   padding-bottom: 30px;
}

.radio-group {
    padding-bottom: 15px;
}

.chatbot-embed-code textarea {
    background-color: #FFF;
    width: 100%;
    margin-bottom: 12px;
    padding: 12px; padding-bottom: 30px;
    font-size: 13px;
    border: 0px solid black;
    line-height: 1.2;
    overflow: hidden;
}

.chatbot-embed-code {
    margin: 20px auto;
    padding: 0px !important;
    line-height: 1;
}

.chatbot-embed-code code {
    line-height: 1.3;
    font-size: 13px;
    display: inline-block;
    padding-top: 12px;
}

.chatbot-embed-code p {
    margin: 0;
    font-size: 15px;
}

.chatbot-config-form input[type="radio"] {
    vertical-align: middle;
    margin-left: 16px;
    margin-bottom: 4px;
    width: auto;
}

#contact-form-builtin-container input,
#plan-visit-builtin-container input {
    min-width: 100%;
    padding: 10px 12px;
    border: 1px solid #C7C7C7;
    /* WP-like border */
    border-radius: 3px;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
}

/* Helper Text Styling */
.chatbot-config-form strong,
.chatbot-config-form fieldset label {
    color: #2563eb !important;
    font-size: 16px;
    padding-bottom: 0px;
    font-weight: 600;
    margin-bottom: 5px;
}

.tabintro {border-bottom: 1px solid #d43550; padding-bottom: 10px;}

.chatbot-config-form fieldset {margin-bottom 40px !important;}


fieldset .starters label {
    color: #000000 !important;
    font-size: 14px;
    font-weight: 700;
}

.chatbot-config-form .helpertext strong {
    font-size: inherit;
    /* Keep size consistent */
    margin-bottom: 5px;
    display: inline;
    /* Make inline to not break flow */
    color: inherit;
}

#scan-page-selection #select-pages-form label {
    /*! margin-bottom: -15px; */
}

/*Questions*/
.modern-question-container {
    display: flex; margin-top: 20px;
    height: 80vh;
    /* Use a relative height or adjust as needed */
    border: 1px solid #d1d1d1;
    /* Subtle border around the container */
    border-radius: 8px;
    /* Rounded corners */
    overflow: hidden;
    /* Hide overflowing content */
    /*! box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
    /* Subtle shadow */
    background-color: #FFFFFF;
    /* Ensure a white background */
}

.modern-question-sidebar {
    width: 280px;
    /* Slightly wider sidebar */
    background: #F8F9FA;
    /* Lighter sidebar background */
    border-right: 1px solid #d1d1d1;
    overflow-y: auto;
    padding: 15px;
    /* Increased padding */
    flex-shrink: 0;
    /* Prevent shrinking */
}

.modern-sidebar-title {
    font-size: 1.2em;
    /* Slightly larger title */
    color: #333;
    margin: 0 0 20px 0;
    /* More space below title */
    font-weight: 600;
    /* Semi-bold */
}

.modern-question-filter {
    margin-bottom: 20px;
    /* More space below filters */
}

.modern-filter-input,
.modern-filter-select,
.modern-clear-button {
    width: 100%;
    margin-bottom: 8px;
    /* Consistent spacing */
    padding: 10px 12px;
    /* More padding */
    font-size: 14px;
    border: 1px solid #CED4DA;
    /* Subtle border color */
    border-radius: 5px;
    /* Slightly more rounded */
    box-sizing: border-box;
    /* Include padding and border in element's total width */
}

.modern-filter-input:focus,
.modern-filter-select:focus,
.modern-clear-button:focus {
    outline: none;
    border-color: #007BFF;
    /* Highlight color on focus */
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    /* Subtle glow on focus */
}

.modern-clear-button {
    background-color: #E9ECEF;
    /* Light background */
    color: #495057;
    /* Darker text color */
    cursor: pointer;
    transition: background-color 0.2s ease;
    /* Smooth transition */
}

.modern-clear-button:hover {
    background-color: #DAE0E5;
    /* Slightly darker on hover */
}

.modern-question-users-list {
    overflow-y: auto;
    padding-right: 5px;
    /* Add some padding to the right for the scrollbar */
}

/* Custom scrollbar styles (optional) */
.modern-question-users-list::-webkit-scrollbar {
    width: 8px;
}

.modern-question-users-list::-webkit-scrollbar-track {
    background: #F8F9FA;
}

.modern-question-users-list::-webkit-scrollbar-thumb {
    background: #CED4DA;
    border-radius: 4px;
}

.modern-question-users-list::-webkit-scrollbar-thumb:hover {
    background: #A8B2BD;
}

.modern-day-title {
    font-size: 14px;
    /* Smaller date title */
    color: #000;
    /* Muted color */
    margin: 15px 0 8px 0;
    /* Adjusted spacing */
    text-transform: uppercase;
    font-weight: 700;
    /* Semi-bold */
    /* Slightly increased letter spacing */
    letter-spacing: -0.5pt;
}


.loginhelp {font-size: 14px; border: 1px solid #d2d8d8; padding: 15px; }



.modern-question-user {
    display: flex;
    align-items: center;
    padding: 10px;
    /* Increased padding */
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 4px;
    /* Space between user items */
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    /* Smooth transitions */
}

.modern-question-user:hover {
    background: #E9ECEF;
    /* Light hover background */
}

.modern-question-user.selected {
    background-color: #2E5584;
    /* Highlight color for selected user */
    color: #FFF;
    /* White text for selected user */
    box-shadow: 0 2px 5px rgba(0, 123, 255, 0.2);
    /* Subtle shadow for selected */
    /*+border-radius: 4px;*/
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -khtml-border-radius: 4px;
    border-radius: 4px;
}

.modern-question-user.selected .modern-user-icon {
    color: #FFF;
    /* White icon for selected user */
}

.modern-question-user.selected .modern-user-name {
    color: #FFF;
    /* White user name for selected user */
}

.modern-user-icon {
    font-size: 18px;
    /* Slightly smaller icon */
    margin-right: 12px;
    /* More space */
    color: #6C757D;
    /* Muted icon color */
}

.modern-user-name {
    font-size: 14px;
    /* Consistent font size */
    color: #343A40;
    /* Darker text */
    white-space: nowrap;
    /* Prevent wrapping */
    overflow: hidden;
    /* Hide overflow */
    text-overflow: ellipsis;
    /* Show ellipsis for overflow */
}

.modern-question-conversation {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #FFF;
    padding: 20px 0px 20px 45px;
}

.modern-question-header {
    border-bottom: 1px solid #d1d1d1;
    /* Subtle border */
    padding-bottom: 15px;
    /* More space below header */
    margin-bottom: 20px;
}

.modern-conversation-user-name {
    margin: 0;
    font-size: 1.1em;
    /* Slightly smaller header font size */
    color: #333;
    font-weight: 600;
    /* Semi-bold */
}

.modern-conversation-date {
    margin: 5px 0 0;
    font-size: 0.9em;
    /* Smaller date font size */
    color: #6C757D;
    /* Muted color */
}

.modern-question-messages {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
    /* Add some padding for scrollbar */
}

/* Custom scrollbar styles (optional) */
.modern-question-messages::-webkit-scrollbar {
    width: 8px;
}

.modern-question-messages::-webkit-scrollbar-track {
    background: #FFF;
}

.modern-question-messages::-webkit-scrollbar-thumb {
    background: #CED4DA;
    border-radius: 4px;
}

.modern-question-messages::-webkit-scrollbar-thumb:hover {
    background: #A8B2BD;
}

.modern-question-message {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    /* Align items to the top */
    padding: 8px 12px;
    /* Add some padding to messages */
    background-color: #F1F1F1;
    /* Light background for messages */
    border-radius: 4px;
    /* Rounded corners for message bubbles */
    max-width: 95%;
    /* Limit message width */
    word-break: break-word;
    /* Break long words */
}

.modern-question-message-time {
    font-size: 0.8em;
    /* Smaller time font size */
    color: #999;
    margin-right: 15px;
    /* More space */
    min-width: 60px;
    /* Ensure consistent spacing */
    text-align: right;
    /* Align time to the right */
    flex-shrink: 0;
    /* Prevent shrinking */
}

.modern-question-message p {
    font-size: 14px;
    color: #333;
    margin: 0;
    line-height: 1.5;
    /* Improved readability */
}

.modern-select-user-message {
    text-align: center;
    color: #6C757D;
    margin-top: 50px;
    /* Center vertically roughly */
}

/* Button Styling */
.chatbot-config-form .button,
.chatbot-config-form .button-primary {
    display: inline-block;
    text-decoration: none;
    font-size: 13px;
    line-height: 2.15384615;
    min-height: 30px;
    margin: 0;
    padding: 0 12px;
    cursor: pointer;
    border-width: 1px;
    border-style: solid;
    -webkit-appearance: none;
    border-radius: 3px;
    white-space: nowrap;
    box-sizing: border-box;
    vertical-align: top;
}

.chatbot-config-form .button {
    /* Secondary button style */
    background: #F6F7F7;
    border-color: #007CBA;
    color: #007CBA;
}

.chatbot-config-form .button:hover,
.chatbot-config-form .button:focus {
    background: #F0F0F1;
    border-color: #0071A1;
    color: #0071A1;
}

.chatbot-config-form .button-primary {
    /* Primary Button (Save Config) */
    background: #0073AA;
    border-color: #0073AA;
    color: #FFF;
    /* Larger padding */
    height: auto;
    line-height: normal;
   font-size:15px !important; padding:4px 16px; border:none; border-radius:0px; cursor:pointer; margin-left:8px;background-color: #41c36d; font-weight: 400;
  color: #ffffff;
}

.chatbot-config-form .button-primary:hover,
.chatbot-config-form .button-primary:focus {
    background: #006799;
    border-color: #006799;
    color: #FFF;
}

.chatbot-config-form .button:disabled,
.chatbot-config-form .button-primary:disabled {
    color: #A7AAAD !important;
    border-color: #DCDCDE !important;
    background: #F6F7F7 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    cursor: default;
    opacity: 0.7;
}

.chatbot-embed-code button.button {
    font-size: 13px;
    border: 1px solid black;
    padding: 7px 17px 7px 18px;
    background-color: #FFFFFF;
    font-weight: 600;
}

.chatbot-config-form button {
    color: #FFF;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    margin-top: 22px;
}

/* Embed Code Section */
.chatbot-config-form .chatbot-embed-code {
    margin-top: 25px;
    padding: 15px;
    border: 1px solid #d1d1d1;
    /* Match fieldset border */
    background: #F9F9F9;
    /* Slightly different background */
    border-radius: 4px;
}

.chatbot-config-form .chatbot-embed-code p strong {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    color: #0073A9 !important;
    font-size: 16px;
    padding-bottom: 0px;
    font-weight: 600;
    margin-bottom: 10px;
}

.chatbot-config-form .chatbot-embed-code .button {
    margin-top: 0;
    /* Remove top margin */
}

/* --- WordPress Specific & Utility --- */
.updated,
.error {
    /* Style Save Messages */
    margin: 15px 0;
    padding: 10px 15px;
    border-radius: 3px;
    border-left-width: 4px;
    border-left-style: solid;
}

.updated p,
.error p {
    margin: 0;
}

.updated {
    background-color: #FFF;
    border-color: #7AD03A;
    /* Green */
}

.error {
    background-color: #FFF;
    border-color: #DC3232;
    /* Red */
}

body.admin-bar .dashboard-sidebar {
    top: 32px;
    /* Adjust if admin bar is present */
}

@media screen and (max-width: 782px) {
    body.admin-bar .dashboard-sidebar {
        top: 46px;
        /* Adjust for mobile admin bar */
    }
    /* Add basic responsive adjustments if needed */
    /* .dashboard-sidebar { position: static; width: 100%; } */
    /* .dashboard-content { margin-left: 0; width: 100%; } */
}

/*Checkout*/
.card-content .pricemark {
    color: #5DA573;
}

.pricemark1 {display: inline-block; background: #efefef; padding: 5px 20px; }

.card-content .title.is-4 {
    color: #3C6D9E !important;
    font-weight: bold;
    font-size: 36px;
    margin-top: 37px;
}

.system-create-account .submit {
    background-color: #565FB3;
    color: #FFFFFF !important;
    padding: 10px 0;
    /*+border-radius: 45px;*/
    -moz-border-radius: 45px;
    -webkit-border-radius: 45px;
    -khtml-border-radius: 45px;
    border-radius: 45px;
    width: 100%;
    border: 0px solid black !important;
    text-align: center;
    text-decoration: none;
    margin-top: 46px;
}

.system-create-account label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: -10px;
    font-weight: 600;
    font-size: 18.1px;
    padding-top: 17px;
}

.system-create-account input {
    box-sizing: border-box;
}

.system-create-account .container-fluid {
    max-width: 760px;
    display: inline-block;
    margin: auto;
    text-align: left;
}

.system-create-account .g-recaptcha {
    margin: 17px auto auto;
    text-align: center;
    width: 311px;
}


/*Account*/
#rcp_profile_editor_form fieldset:nth-child(1) {
    float: left;
    width: 50%;
    background-color: #E5E5E5;
    display: inline-block;
    margin-right: 3%;
    padding: 30px;
}

.rcp_form fieldset input {
    background-color: #FFFFFF;
    font-size: 15px;
    padding: 8px !important;
    border: 1px solid #C3C3C3;
}

.rcp_card_name.card-name {
    width: 285px;
}

#rcp_profile_editor_form fieldset:nth-child(2) {
    padding-top: 26px;
}

#rcp_profile_submit_wrap .rcp_submit {
    background-color: #1f2937;
    color: #FFFFFF !important;
    padding: 10px 20px 10px 22px !important;
    margin-top: 12px;
    font-size: 14px;
    /*+border-radius: 0;*/
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    border-radius: 0;
}

#rcp_profile_display_name_wrap {
    display: none;
}

.rcp-update-billing-details-unsupported {
    margin-top: 48px;
    margin-bottom: -26px;
}

#rcp-account-overview.subscription td {
    padding-right: 46px;
    font-size: 14px;
    letter-spacing: 0pt;
    font-weight: 400;
    color: #D10D0D;
    vertical-align: middle;
    padding-left: 8px;
    padding-bottom: 20px;
}

.rcp-membership-auto-renew-notice {
    line-height: 0.3;
}

.rcp-disable-auto-renew button {
    display: none;
}

#rcp-payment-history.subscription td {
    font-size: 14px;
    letter-spacing: 0pt;
    font-weight: 400;
    color: #6D6D6D;
    white-space: nowrap;
    padding-left: 10px;
}

#rcp-account-overview thead th {
    line-height: 1.4;
    font-size: 14.8px;
    padding-bottom: 10px;
}

#rcp-account-overview thead tr th:nth-child(4) {
    display: none;
}

#rcp-account-overview td.cell:nth-child(4) {
    padding-left: 0px;
    padding-right: 23px;
    display: inline-block;
}

.rcp-table.subscription thead th {
    line-height: 1.3;
    font-size: 14.8px;
    padding-bottom: 10px;
}

.rcp_sub_details_change_membership button {
    display: none !important;
}

.page-plan-signup .upgradesub {
    font-size: 17px !important;
    border: 0px solid #B1B1B1 !important;
    font-weight: 400;
    background-color: #4EAB7B;
    color: #FFFFFF !important;
    padding: 5px 21px 5px 28px;
    display: inline-block !important;
    top: 0;
    right: 5px;
    text-decoration: none;
    margin-top: 56px;
    width: 28%;
    text-align: center;
    float: right;
    margin-bottom: -60px;
    /*+placement: -9px 24px;*/
    position: relative;
    left: -9px;
    top: 24px;
    z-index: 999999;
}

.rcp-table-wrapper {
    margin-top: 85px;
    display: inline-block;
    min-width: 100% !important;
    border: 1px solid #CCCCCC;
    padding: 35px 39px 40px;
    position: relative;
    border-bottom: 1px solid #DFDFDF !important;
    background-color: #FFFFFF;
    border: 1px solid #bbbbbb; border-radius: 6px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

#rcp-card-element.StripeElement {
    padding-bottom: 12px;
    padding-top: 13px;
}

.rcp_message .rcp_error {
    width: 51%;
    float: right;
}

.page-login .rcp_error {
    width: auto;
    float: none;
    font-size: 14px;
    padding: 0;
}

#rcp_login_form {
    border: 0px solid black;
    padding: 0 !important;
    margin: 22px 0 0 !important;
}

.rcp-table.subscription a button {
    border: 1px solid #D2D2D2;
    padding-right: 21px;
    padding-left: 22px;
}

.subscription .rcp_sub_details_cancel button {
    /*+placement: 0px -20px;*/
    position: relative;
    left: 0px;
    top: -20px;
    border: 1px solid #B31313 !important;
    color: #B21313;
    background-color: #FFFFFF;
    font-size: ;
}

#rcp_update_card_form #rcp_submit.rcp-button {
    padding: 8px 18px 8px 19px;
    font-size: 13px;
    border: 1px solid #BFBFBF;
}

#rcp_update_card_form h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: 0;
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 4px;
    width: 257px;
}

#rcp_profile_editor_form fieldset legend,
#rcp-table-wrapper.rcp-table-wrapper h3 {
    font-weight: 600;
    border-top: 1px solid #DCDCDC;
    padding-top: 29px;
    font-size: 20px;
    padding-bottom: 4px;
    width: 100%;
}

.rcp-gateway-saved-payment-methods label {
    font-size: 15px !important;
    line-height: 1;
}

.rcp-gateway-saved-payment-methods .rcp-gateway-saved-card-delete a {
    color: #B31313;
}

#rcp_profile_editor_form fieldset legend,
#rcp-table-wrapper.rcp-table-wrapper h3:first-child {
    border-top: 0px solid black;
    padding-top: 0;
    display: none;
}

.rcp_subscription_fieldset .rcp_level {
    margin-top: 8px !important;
}

.billingnote {
    display: inline-block;
    font-size: 14px !important;
    margin: 29px auto auto;
    width: 100%;
}

.upgradesub {
    font-size: 17px !important;
    border: 0px solid #B1B1B1 !important;
    font-weight: 400;
    background-color: #41c36d;
    color: #FFFFFF !important;
    padding: 5px 21px 5px 28px;
    display: inline-block !important; 
    top: 0;
    right: 5px;
    text-decoration: none !important;
    margin-top: 30px;
    width: 28%;
    text-align: center;
    float: left;
    margin-bottom: -60px;
    z-index: 999999;
}

.billingnote a {
    color: #D2240D;
}

.videosettingswrap p {
    text-align: center;
}


/*Checkout*/
h3.rcp_header {
    font-size: 32px;
    font-weight: bold;
    margin-top: 0;
    padding-bottom: 30px;
}

#rcp_payment_gateways {
    margin-top: 15px;
}

#rcp_registration_form {
    /*! background-color: #F0F0F0; */
    padding: 24px !important;
    border: 1px solid #D1D1D1;
    margin-bottom: 70px;
    /*+border-radius: 8px;*/
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    -khtml-border-radius: 8px;
    border-radius: 8px;
    /*! box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

.row.rcp-renewal-date {
    margin-left: -1px;
}

.rcp_registration_total_details .membership-amount {
    margin-top: 22px;
}

.rcp-renewal-date .cell {
    width: 185px;
    padding-left: 0;
    background-color: #FFFFFF;
}

#rcp_auto_renew_wrap {
    margin-top: 25px;
    margin-left: 7px;
}

.rcp_subscription_fieldset p.rcp_subscription_message {
    font-size: 18.5px;
    font-weight: bold;
    margin-top: 3px;
    border-bottom: 1px solid #B3B3B3;
    padding-bottom: 6px;
    margin-bottom: 22px;
}

.rcp_registration_total_details.rcp-table tr {
    padding: 7px 0 0;
    height: 43px;
    border-bottom: 1px solid #CBCBCB;
}

.rcp-renewal-date .cell:nth-child(2) {
    text-align: right;
    color: #DF2727;
    font-weight: 400;
    margin-right: -11px;
}

.rcp_level_description {
    font-size: 14px !important;
    font-weight: 400;
    padding-top: 4px;
}

.rcp_subscription_fieldset {
    float: left;
    width: 390px;
    margin-right: 49px !important;
    background-color: #FFFFFF;
    padding: 30px 30px 14px 30px !important;
    display: block;
    background-color: #FAFAFA;
    border: 1px solid #D7D7D7 !important;
    margin-top: -1px !important;
}

#rcp_subscription_levels span.rcp_subscription_level_name {
    font-weight: 700;
    color: #1A4D80;
}

.rcp_registration_total_details.rcp-table td {
    font-size: 15px;
    background-color: #FFFFFF;
}

.membership-amount th {
    font-size: 19.5px;
    font-weight: bold;
    margin-top: 3px;
    margin-bottom: 7px;
}

.rcp_subscription_level.rcp_subscription_level_2,
.rcp_subscription_level.rcp_subscription_level_4 {
    margin-bottom: 20px !important;
    display: inline-block !important;
    border-bottom: 1px solid #C0C0C0;
    padding-top: 0px;
    padding-bottom: 9px;
    margin-top: -1px;
}

.rcp_subscription_level .rcp_level_description {
    margin-left: -7px;
    margin-top: -7px;
    font-style: italic;
    color: #B74747;
}

#rcp_subscription_levels .rcp_subscription_level {
    margin-bottom: -5px;
    padding-bottom: 0;
}

.subscription .rcp_sub_details_renew {
    display: none;
}

.rcp_gateway_option_label input {
    margin-right: 3px !important;
    margin-left: 6px;
}

.rcp_subscription_fieldset .rcp_level {
    margin-top: 8px !important;
    margin-right: 9px !important;
}

#rcp_registration_form #rcp_submit.rcp-button {
    background-color: #4EAB7B;
    color: #FFFFFF !important;
    padding: 12px 31px 13px 27px !important;
    width: 100%;
    margin-top: 32px;
    text-align: center;
    font-size: 19px;
    border: 0px solid black;
}

.rcp_gateways_fieldset legend {
    margin-top: 39px !important;
    font-weight: bold;
    font-size: 19px;
    display: inline-block !important;
    /*+placement: 0px 5px;*/
    position: relative;
    left: 0px;
    top: 5px;
}

.rcp_card_fieldset {
    width: 100%;
    display: inline-block !important;
    margin-top: 37px !important;
    padding: 13px !important;
    border: 1px solid #D5D5D5 !important;
    margin-bottom: 11px !important;
}

li.rcp_subscription_level label {
    line-height: 1.8;
    margin-bottom: -6px;
}

/* Pricing Section Styling */
/* Pricing Section Styling */
.pricingchart {
    padding: 40px 0;
}

.pricing-container {
    max-width: 1105px;
    margin: 0 auto;
}

.pricing-row {
    margin-bottom: 20px;
    overflow: hidden;
    /* Clearfix for floated children */
}

.pricing-box {
    float: left;
    width: 48%;
    /* 50% width minus half the gap */
    background-color: #F7F7F7;
    border-radius: 8px;
    padding: 20px;
    /*! box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    margin-right: 43px;
    /* Gap between cards */
    margin-bottom: 7px;
      /*! border: 1px solid #cbcbcb; */
}

.pricing-box:last-child {
    margin-right: 0;
    /* Remove margin from the last card */
}

.pricing-box .pricemark {
    font-size: 16px;
    color: #5DA573;
    margin-bottom: 10px;
}

.pricing-box .pricemark span {
    font-size: 18pt;
}

.pricing-box .title {
    font-size: 36px;
    font-weight: 700;
    color: #3C6D9E;
    margin-bottom: 10px;
}

.pricing-box em {
    font-style: italic;
    color: #666;
    display: block;
    margin-bottom: 15px;
}

.pricing-box ul p em {
    font-size: 13px;
    line-height: 1.5;
    padding-left: 17px;
    padding-top: 6px;
    padding-right: 21px;
}

.pricing-box ul {
    list-style: disc inside;
    padding: 0;
    margin: 0;
}

.pricing-box li {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
    list-style-type: none;
    position: relative;
    padding-left: 35px;
    padding-bottom: 8px;
    padding-right: 15px;
    padding-top: 2px;
}

.pricing-box li i {
    font-size: 23px;
    position: absolute;
    left: -10px;
    width: 30px;
    text-align: center;
}

.pricing-box li strong {
    font-size: 15px;
}

.pricing-box li strong {
    font-weight: 600;
}

@media (max-width: 900px) {
    .pricing-box {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .pricing-box:last-child {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 1065px) {
    .rcp_subscription_fieldset {
        float: none;
        width: 100%;
    }
    
    .rcp_registration_total table.rcp_registration_total_details {
        float: none;
        width: 100%;
    }
    
    .rcp_registration_total_details tr {
        width: 100% !important;
    }
    
    #rcp_registration_form #rcp_submit.rcp-button {
        width: 89%;
        margin-top: 32px;
    }
    
    .rcp_message .rcp_error {
        width: auto;
        float: none;
        text-align: center;
    }
}

/*Admin Bar*/
#wpadminbar {
    background-color: rgba(35, 40, 45, 0) !important;
    z-index: 99;
    position: absolute;
    width: 0px !important;
}

/*Login*/


.lrm-form input {
    padding: 9px 9px 9px 41px !important;
    font-size: 15px;
    line-height: 2;
}

.lrm-integrations {
    line-height: 1.2;
}

.lrm-form {
    padding-bottom: 32px !important;
    padding-top: 11px !important;
}

.js-lrm-form .lrm-fieldset-wrap {
    padding: 0 !important;
}

.lrm-form .fieldset {
    padding: 0 !important;
}

.logout a {
    font-size: 13px !important;
    line-height: 0;
    padding: 13px 11px 12px !important;
    margin-top: -16px;
    margin-bottom: 28px;
    background-color: #B68080;
    color: #FFFFFF !important;
} 




.testimonial {
    margin-top: 20px;
}

.testimonial blockquote {
    font-size: 1em;
    margin-bottom: 20px;
}

.testimonial cite {
    font-size: 0.9em;
    color: #CCC;
}

.lrm-user-modal-container {
    margin: 37px 0 0;
    width: 100%;
    border: 0px solid black !important;
}

.lrm-switcher {
    display: none;
}

.lrm-switch-to--reset-password {
    color: #DC1919 !important;
    font-size: 15px;
    /*+placement: 0px -35px;*/
    position: relative;
    left: 0px;
    top: -35px;
}

.js-lrm-form .fieldset--submit button {
    padding: 11px;
    /*+border-radius: 0;*/
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    border-radius: 0; margin-top: 15px;
    background-color: #3a4ece;
}

.login-text-section .logo {
    font-size: 36px;
    font-weight: 600;
}

.login-text-section .logo b {
    display: inline-block;
    padding-top: 6px;
    padding-bottom: 6px;
    color: #54BBDC;
}

p.upgradeto,
.testimonial .card-content .createto {
    font-size: 17.4px;
    margin-top: 6px;
    margin-bottom: 18px;
    background-color: rgba(199, 199, 199, 0.260);
    padding: 6px 6px 6px 18px;
}

.createto b {
    color: #BAECC0;
}

.login-page .testimonial .card-content ul li strong {
    color: #A2D8EA;
    font-weight: 600;
    display: inline-block;
}

.login-page .testimonial .card-content ul li {
    color: #FFFFFF !important;
    list-style-type: none;
    margin-bottom: 16px;
    font-size: 14.4px;
}

.login-page .testimonial .card-content ul {
    padding-left: 25px;
    padding-right: 27px;
}

.login-page .card-content ul i {
    width: 28px;
    font-size: 19.4px;
    margin-top: 7px;
}

.bg-white {
    box-shadow: none !important;
    border: 1px solid #D5D5D5;
}

.chatbot-metrics-dashboard h3.text-lg {
    font-size: 21px;
    font-weight: bold;
    line-height: 1.1;
    padding-bottom: 8px;
}

.mr-4 svg {
    color: #FFFFFF;
}




@media only screen and (max-width: 1000px) {
    .login-text-section {
        display: none;
    }
}


/*Subscribe*/
.subscription-card {
  background: #e7f1fa;
  border-radius: 8px;
  padding: 24px;
  /*! border: 1px solid #d1d1d1; */
  margin-bottom: 24px;
    border: 20px solid white;
}
.subscription-form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.field-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 65%;
}
.field-group label {
  font-size: 14px;
  color: #0802A3;
  margin-bottom: 4px;
}
.field-group input[type="email"] {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px; margin-right: 10px;
}
.subscription-card .radio-group {padding-top: 17px; padding-right: 9px;}


/*qr code*/
.qr-code-container {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.qr-code-left {
    flex: 0 0 auto;
}
.qr-code-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}


.qr-code-image {
    width: 150px;
    height: 150px;
}

.qr-code-right {
    flex: 1;
}

.qr-code-right h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 10px;
}

.qr-code-right p {
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.5;
}

@media (max-width: 1316px) {
.qr-code-container {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width:100%;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
}


@media (max-width: 768px) {
    .qr-code-container {
        flex-direction: column;
        text-align: center;
    }

    .qr-code-left {
        margin-bottom: 20px;
    }
}


/* Dashboard Metrics Styling */
.chatbot-metrics-dashboard {
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-metrics-container {
    padding: 10px;
}

.metrics-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.metric-box {
    flex: 1 1 22%;
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 15px;
  border: 1px solid #d1d1d1;
    display: flex;
    align-items: center;
    min-width: 200px;
}

.metric-icon-top {
    color: #C1C1C1;
    /* Black color to match screenshot */
    font-size: 25px;
    margin-right: 15px;
    display: inline-flex;
    align-items: center;
    padding: 0px 3px 0px 4px;
}

.metric-content h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
}

.metric-value {
    font-size: 29px;
    font-weight: 700;
    color: #376699;
    margin: -3px 0 0;
}

.action-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    background-color: #f1f1f1;
    /* Single background for the entire row */
    border-radius: 8px;
  border: 1px solid #d1d1d1;
    overflow: hidden;
    /* Ensure border-radius applies to child elements */
    margin-top: 40px;
}

.action-box {
    flex: 1 1 50%;
    /* 2 boxes per row */
    padding: 23px 38px;
    box-sizing: border-box;
    /*! border-right: 1px solid #d1d1d1; */
    /* Vertical separator */
    /*! border-bottom: 1px solid #d1d1d1; */
    /* Horizontal separator */
    box-shadow: none;
    /* Remove individual shadows since the row has a shadow */
}

.action-icon {
    /*! background-color: #278ef9; */
    /* Light yellow background to match screenshot */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    width: 46px;
    
}

.action-icon i {
    color: #000;
    /* Yellow color for icons to match screenshot */
    font-size: 22px; 
}



.clicks {
    font-size: 13px;
    color: #000000;
    font-weight: 500;
    font-style: italic;
    vertical-align: middle;
}

.action-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 3px 0;
    padding-bottom: 0;
}

.action-box p {
    font-size: 14px;
    color: #666;
    margin: 0 0 15px;
}

.action-link {
    color: #0073AA;
    font-weight: 500;
    text-decoration: underline;
    font-size: 17px;
}

.action-link:hover {
    text-decoration: underline;
}

/*Source*/
.add-source-btn {
    color: #41C16D !important;
    border: 2px solid #41C26D !important;
    padding: 8px !important;
    font-weight: 600;
    font-size: 14px !important;
}

.chatbot-source-remove-btn {
    width: 0px !important;
    padding: 10px 12px 13px 13px !important;
    margin-top: 21px !important;
    background-color: #9E3E3E !important;
    /*+border-radius: 3px !important;*/
    -moz-border-radius: 3px !important;
    -webkit-border-radius: 3px !important;
    -khtml-border-radius: 3px !important;
    border-radius: 3px !important;
    margin-right: 25px;
}

.source-content fieldset {
    border: 0px solid black !important;
    padding: 0 !important;
    background-color: #FFFFFF;
}

.additional-source-item {
    background-color: #FFFFFF !important;
    padding: 20px;
    border: 1px solid #DDD;
    margin-bottom: 15px;
    background-color: #F9F9F9;
    position: relative;
}

.additional-source-item details {
    padding: 0;
}

.additional-source-item summary {
    padding: 10px 15px;
    font-weight: bold;
    cursor: pointer;
    background-color: #F1F1F1;
    list-style: none;
    /* Remove default marker */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.additional-source-item summary::-webkit-details-marker {
    display: none;
    /* Remove default marker in Webkit browsers */
}

.additional-source-item summary:hover {
    background-color: #E8E8E8;
}

.additional-source-item .source-content {
    padding: 15px 15px 0px 15px !important;
}

.additional-source-item fieldset {
    margin-bottom: 10px;
    border: none;
    padding: 0;
}

.additional-source-item label {
    margin-bottom: 3px;
    font-weight: bold;
}

.additional-source-item input[type="text"],
.additional-source-item textarea {
    width: 100%;
    margin-bottom: 10px;
}

.additional-source-item textarea {
    min-height: 120px;
    resize: vertical;
}

.chatbot-source-remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #DC3232;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chatbot-source-remove-btn:hover {
    background-color: #A00;
}

.add-source-btn {
    margin-top: 10px;
    padding: 8px 15px;
}

.source-input-container {
    display: none;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #CCC;
}

.file-info {
    font-style: italic;
    color: #555;
    margin-top: 5px;
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid #CCC;
    margin-bottom: 1em;
}

.tab-buttons button {
    background: #aa0094;
    color: #FFF;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-right: 1px;
}

.tab-buttons button.active {
    background: #868686;
}

.tab-content {
    display: none;
    background: #FFF;
    padding: 20px;
    border: 1px solid #CCC;
    border-top: none;
    margin-top: -16px;
}

.tab-content.active {
    display: block;
}

.helpertext {
    font-style: italic;
    font-size: 14px;
    margin: 8px 0 10px 0; padding-bottom: 10px;
    color: #666;
}

.chatbot-config-form .button:disabled {
    background: #CCC;
    color: #666;
    cursor: not-allowed;
    opacity: 0.6;
}

.chatbot-config-form input[type="text"],
.chatbot-config-form textarea {
    width: 100%;
    max-width: 600px;
    margin-bottom: 15px; background: #fff; border: 1px solid #bbb; font-weight: normal;
}

.chatbot-config-form label {
    display: block;
    margin-bottom: 5px;
}

.chatbot-config-form fieldset {
    margin-bottom: 20px;
    padding: 25px;  
}

.chatbot-config-form fieldset strong {
    font-size: 1.1em;
    display: block;
    margin-bottom: 10px;
}

/* Replace these styles */
.user-questions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    margin-top: 44px;
}

.user-questions-column {
    flex: 1 1 30%;
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 20px;
     border: 1px solid #f0f0f0;
    min-width: 250px;
}

.user-questions-column h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px;
}

.user-questions-column ul {
    list-style: disc inside;
    padding: 0;
    margin: 0;
    list-style-position: outside;
    padding-left: 1.5em;
}

.user-questions-column li {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.chatbot-config-form #chatButtonColorHex,
.chatbot-config-form #chatInnerButtonColorHex,
.chatbot-config-form #landingHeaderBgColorHex {
    width: 100px !important;
    min-width: unset !important;
    margin-left: 10px;
}


@media (max-width: 768px) {
    .metric-box,
    .action-box,
    .user-questions-column {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .metric-box,
    .action-box {
        flex: 1 1 100%;
    }
}

/* Display the default cursor instead of a pointer (hand) */
@media only screen and (max-width: 1100px) {
    .main-content {
        margin: 0 auto 0 19%;
    }
}

@media only screen and (max-width: 590px) {
    .sermonimagestext .churchname,
    .sermonimagestext .entry-title,
    .sermonimagestext .entry-title-archive {
        color: #000000;
        font-size: 24px;
        line-height: 1.1;
    }
    
    .sermondatas .churchname {
        font-size: 14px;
    }
    
    .customsite .controls {
        display: inline-block;
        float: left;
        margin-top: 5px;
        margin-bottom: 10px;
        margin-left: -6px;
    }
    
    .customsite .sermonnotes-manage-plain .table1 {
        background-color: #F4F4F4;
        padding-left: 18px;
        border: 0px solid black;
        margin-top: 17px;
        margin-bottom: 12px;
        padding-right: 13px;
    }
}

@media only screen and (max-width: 690px) {
    .offcanvas {
        width: 100% !important;
    }
    
    .innertabbys {
        padding-right: 0px;
    }
    
    .offcanvas-body ul {
        padding: 0 !important;
    }
}

/*Print*/
@media print {
    .fixed-top {
        display: none !important;
    }
    
    .rightbuttonscustom {
        display: none !important;
    }
    
    .sermonimagestext {
        padding-top: 0;
    }
    
    .sermonimagebanner {
        display: none;
    }
    
    .interactiveboxes {
        display: none !important;
    }
    
    .export_button_area {
        display: none !important;
    }
    
    .addyourown {
        display: none !important;
    }
    
    .large-style,
    .small-style {
        background-color: rgba(247, 247, 247, 0);
    }
    
    .addyourown.blue-text {
        display: none !important;
    }
}
