/* Global Styles */
/* Form Styles */
/* Media Queries */
/* Dashboard Section */
/* Billing Section */
/* Chat Widget Customization */
/* Button Styles */
/* Sales Leads Section */
/* Integration Section */
/* Chat History Section */
/* Settings Section */
/* Dropdown Menu Styles */
/* Chat Widget Tab Styles */
/* AI Dropdown Styles */
/* Voice Section Styles */
/* Video Avatar Section Styles */
/* Edit AI */
/* Billing */
/* Customize */
/* Profile Dropdown Styles */
/* Spacing for File Upload */
/* Voice Input */
/* Header Styles */


/* General Styles */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
}

/* Form Section */
.section-heading-div-margin {
    padding: 20px;
}

.section-heading-div {
    text-align: center;
}

.text-create-ai {
    font-size: 1.5em;
    color: #6c63ff;
}

.section-name {
    font-size: 2em;
    color: #333;
}

.form {
    width: 80%;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.input-div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: auto;
    max-width: 330px;
}

.section-heading-div p {
    text-align: left;
    margin: 20px auto;
    max-width: 800px;
    font-size: 1em;
    line-height: 1.6em;
    color: #333;
}

.input-sub-div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-link-container {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    justify-content: space-between;
}

.input-link-container label {
    flex-basis: 20%;
}

.input-link {
    flex-grow: 1;
}

.input-link-container .delete-icon {
    cursor: pointer;
    color: purple;
    font-size: 1.2em;
}

.add-greeting {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-top: 10px;
    color: #333;
    font-weight: 500;
    padding: 10px;
    justify-content: center;
}

.add-greeting i {
    font-size: 1.2em;
}

.add-greeting span {
    display: inline-block;
    vertical-align: middle;
}

.add-greeting:hover {
    color: #6c63ff;
}

.input-sub-div .add-greeting-container {
    display: flex;
    justify-content: flex-start; /* Align to the left */
    width: 100%; /* Ensure it takes the full width */
    padding-left: 20%; /* Align under the label */
}

label {
    font-size: 1em;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="password"],
input[type="file"] {
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #ccc;
    width: 100%;
    transition: all 0.3s ease-in-out;
    outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="file"]:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 8px #6c63ff;
}

::placeholder {
    color: #ccc; /* Light grey color for placeholder text */
    opacity: 1; /* Ensures the color is applied */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #ccc;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #ccc;
}

.divider {
    margin: 20px 0;
    height: 1px;
    background-color: #ccc;
}

/* Button Styles */

.btn-cancel {
    text-decoration: none;
    color: #6c63ff;
    padding: 10px 20px;
    border: 2px solid #d3d3d3;
    background-color: #b2b2b2;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-cancel:hover {
    background-color: #d3d3d3;
    border-color: #a9a9a9;
    color: #333;
}


.form-btn {
    display: flex;
    justify-content: center; /* Center the buttons */
    gap: 20px; /* Add space between the buttons */
    max-width: 700px;
    margin: auto;
}

.btn {
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    transition: all 0.3s ease-in-out;
    color: #fff; /* Ensures text color remains white */
    max-width: 200px; /* Set a maximum width */
    text-align: center; /* Center the text */
}

.btn a {
    color: #fff; /* Ensures text color remains white */
    text-decoration: none;
}

.btn-1 {
    background-color: #6c63ff;  /* Solid color for non-hover state */
}

.btn-1:hover {
    background-color: #5348c8;  /* Slightly darker color for hover state */
}

.border-gradient {
    background-color: #6c63ff;  /* Solid color for non-hover state */
    border: 2px solid transparent;
}

.border-gradient:hover {
    background-color: #5348c8;  /* Slightly darker color for hover state */
}

.hover-btn:hover {
    background-color: #5348c8;
}

.hover-btn:hover a {
    color: #fff !important; /* Ensures link text color remains white on hover */
}

.btn-primary {
    background-color: #360374; /* Dark purple background */
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 20px;
}

.btn-primary:hover {
    background-color: #5348c8;
}

.btn-secondary {
    background-color: #fff;
    color: #360374; /* Dark purple text */
    border: 2px solid #360374; /* Dark purple border */
}

.btn-secondary:hover {
    background-color: #f8f8f8;
}

/* File Upload Styles */
.upload-input-div {
    max-width: 700px;
    border: 1px dashed black;
    border-radius: 10px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;
    margin-bottom: 50px;
}

.upload-input-div input {
    padding: 10px 20px 50px 20px;
    opacity: 0;
}

.svg-img {
    width: 56px;
    z-index: -1;
    position: absolute;
}

.uploadtext-fw {
    font-weight: 500;
    padding-top: 20px;
    font-size: 14px;
}

.img-size {
    width: 130px;
    height: 130px;
    border: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

.img-size img {
    width: 50px;
    height: 100%;
}

/* Radio Button Styles */
.redio-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 150px;
}

.redio-ntn {
    margin-top: 5px;
    width: 100%;
    height: 22px;
    accent-color: blueviolet;
}

.redio-span {
    font-size: 14px;
    color: black;
    font-weight: 500;
    margin-top: 10px;
}

.radio-btn-main-div {
    max-width: 700px;
    margin: auto;
}

.radio-btn-sub-div {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.input-main-div {
    max-width: 670px;
    margin: auto;
}

.input-link {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid black;
    width: 100%;
    margin-bottom: 15px;
}

.input-link::placeholder {
    color: #ccc; /* Light grey color for placeholder text */
    font-weight: 500;
}

.text-create-ai {
    margin-bottom: 20px;
    text-align: center;
}

/* Section Heading Styles */
.section-heading-div {
    padding: 50px 10px;
}

/* Media Queries */
@media (max-width: 768px) {
    .select-look-div {
        padding: 0 15px;
    }

    .text-create-ai {
        margin-bottom: 6px;
    }

    .section-name {
        font-size: 30px;
    }

    .section-heading-div {
        padding: 50px 10px 20px 10px;
    }

    .upload-input-div {
        margin-bottom: 30px;
    }

    .img-size {
        width: 120px;
        height: 120px;
    }

    .form-btn button {
        padding: 10px 30px;
    }
}

@media (max-width: 576px) {
    .section-name {
        font-size: 28px;
    }

    .form-btn button {
        padding: 6px 24px;
    }

    .divider {
        margin: 20px auto;
    }

    .radio-btn-sub-div {
        gap: 15px;
    }

    .redio-span {
        margin-top: 6px;
    }
}

@media (max-width: 480px) {
    .input-main-div {
        max-width: 250px;
    }
}

/* Dashboard Section */
.dashboard-container {
    display: flex;
    height: 100vh;
}

.sidebar {
    width: 250px;
    background-color: #360374; /* Updated Purple color */
    color: white;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.sidebar-header {
    margin-bottom: 30px;
    width: 100%;
    text-align: center; /* Center the logo */
}

.logo {
    width: 150px;
}

.nav-menu {
    list-style: none;
    width: 100%;
    padding: 0;
}

.nav-item {
    width: 100%;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.nav-item a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    width: 100%;
}

.nav-item:hover:not(.manage-ai) {
    background-color: #5348c8; /* Darker purple for hover effect */
}

.nav-item i {
    margin-right: 10px;
}

.manage-ai-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    flex-direction: column;
    background-color: #360374; /* Same background as sidebar */
    color: white;
    width: 100%;
    padding: 0; /* Remove extra padding */
    margin: 0; /* Remove margin */
    list-style: none; /* Remove list-style for the dropdown */
}

.dropdown-content li {
    width: 100%; /* Ensure dropdown items take full width */
}

.dropdown-content a {
    color: white;
    padding: 15px 20px; /* Ensure padding covers the entire area */
    text-decoration: none;
    display: flex;
    align-items: center;
}

.dropdown-content a:hover {
    background-color: #5348c8; /* Hover effect for the entire area */
}

.show {
    display: flex;
}

.dropdown-icon {
    margin-left: auto; /* Align dropdown icon to the right */
}

.main-content {
    flex-grow: 1;
    padding: 40px;
    background-color: #f0f0f0; /* Light grey background */
}

h1 {
    color: #360374;
    text-align: center;
    margin-bottom: 40px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
}

.stat-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    flex: 1;
    margin: 0 10px;
}

.stat-card h3 {
    color: #360374;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 24px;
    color: #5348c8;
}

.charts-container {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

canvas {
    width: 100%;
    max-width: 600px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Billing Section */
.billing-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.plan-details {
    text-align: center;
}

.plan-header {
    background-color: #e5e5ff; /* Light purple background */
    color: #360374; /* Dark purple text */
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.plan-name {
    font-weight: bold;
    color: #360374; /* Dark purple color */
}

/* Chat Widget Customization */
.customize-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f0f0f0; /* Light grey background */
    border-radius: 8px;
}

.tabs-container {
    width: 200px;
    background-color: #360374;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.tab-button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #5348c8;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: left;
}

.tab-button.active {
    background-color: #f9f9f9;
    color: #360374;
}

.customize-settings {
    width: 45%;
    background-color: #ffffff; /* Light background for the settings panel */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
}

.customize-settings label {
    display: block;
    margin-bottom: 5px;
    color: #333; /* Dark text for visibility */
}

.customize-settings input[type="color"],
.customize-settings input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc; /* Light grey border */
    border-radius: 8px;
    background-color: #f9f9f9; /* Light background for inputs */
    color: #333; /* Dark text for visibility */
}

.chat-widget-preview {
    width: 45%;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat-widget {
    width: 100%;
    max-width: 400px; /* Wider for better visibility */
    background-color: #f0f0f0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 20px; /* Padding for better appearance */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow for the widget */
}

.chat-header {
    background-color: #360374;
    padding: 10px;
    text-align: center;
    color: #fff;
    border-radius: 8px 8px 0 0;
}

.chat-messages {
    flex-grow: 1;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    margin: 10px 0;
}

.ai-message,
.user-message {
    margin: 10px 0;
    padding: 10px;
    border-radius: 8px;
    max-width: 80%;
}

.ai-message {
    background-color: #e5e5ff;
    color: #360374;
    align-self: flex-start;
}

.user-message {
    background-color: #5348c8;
    color: #fff;
    align-self: flex-end;
}

.chat-input {
    display: flex;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 0 0 8px 8px;
}

.chat-input input {
    flex-grow: 1;
    padding: 10px;
    border: none;
    border-radius: 8px 0 0 8px;
    background-color: #e5e5ff;
    color: #333;
}

.chat-input button {
    padding: 10px;
    border: none;
    border-radius: 0 8px 8px 0;
    background-color: #360374;
    color: #fff;
    cursor: pointer;
}

/* Sales Leads Section */
.main-content {
    flex-grow: 1;
    padding: 40px;
    background-color: #f0f0f0; /* Light grey background */
}

h1 {
    color: #360374;
    text-align: center;
    margin-bottom: 40px;
}

.sales-leads-table-container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sales-leads-table {
    width: 100%;
    border-collapse: collapse;
}

/* Ensure the phone number stays on one line */
.sales-leads-table td a {
    white-space: nowrap;
}

.sales-leads-table th,
.sales-leads-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.sales-leads-table th {
    background-color: #360374;
    color: #ffffff;
}

.sales-leads-table td {
    color: #333;
}

.sales-leads-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.sales-leads-table tr:hover {
    background-color: #f1f1f1;
}

/* Integration Section */
.main-content {
    flex-grow: 1;
    padding: 40px;
    background-color: #f0f0f0; /* Light grey background */
}

h1 {
    color: #360374;
    text-align: center;
    margin-bottom: 40px;
}

.integration-container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto; /* Center the container */
}

label {
    color: #360374;
    display: block;
    margin-bottom: 10px;
}

select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    color: #333;
    margin-bottom: 20px;
}

textarea {
    width: 100%;
    height: 150px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    color: #333;
    margin-top: 10px;
}

.btn-primary {
    background-color: #360374;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 20px;
}

.btn-primary:hover {
    background-color: #5348c8;
}

/* Chat History Section */
.main-content {
    flex-grow: 1;
    padding: 40px;
    background-color: #f0f0f0; /* Light grey background */
}

h1 {
    color: #360374;
    text-align: center;
    margin-bottom: 40px;
}

.filter-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.ai-dropdown,
.date-picker {
    flex: 1;
    margin: 0 10px;
}

label {
    color: #360374;
    display: block;
    margin-bottom: 5px;
}

select,
input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    color: #333;
}

.chat-history-container {
    display: flex;
}

.users-tabs {
    width: 200px;
    background-color: #360374;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.tab-button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #5348c8;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: left;
}

.tab-button.active {
    background-color: #f9f9f9;
    color: #360374;
}

.chat-box {
    flex-grow: 1;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-left: 20px;
}

.chat-entry {
    margin-bottom: 20px;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.chat-entry p {
    margin: 5px 0;
}

.chat-entry strong {
    color: #360374;
}

/* Settings Section */
.settings-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.settings-field {
    margin-bottom: 20px;
}

.settings-field label {
    display: block;
    margin-bottom: 5px;
    color: #360374;
}

.current-edit {
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-detail {
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    flex-grow: 1;
    white-space: nowrap; /* Prevent text wrapping */
}

.current-edit input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    color: #333;
    max-width: calc(100% - 20px); /* Ensure input fits within the container */
    white-space: nowrap; /* Prevent text wrapping */
}

.settings-form .btn {
    background-color: #6c63ff;
    color: #fff;
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease-in-out;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.settings-form .btn:hover {
    background-color: #5348c8;
}

/* Dropdown Menu Styles */
.nav-item.manage-ai .dropdown-content {
    display: none;
    position: absolute;
    background-color: #360374;
    color: white;
    min-width: 250px;
    max-width: 250px; /* Fixed width for the dropdown */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 0;
    left: 250px; /* Aligns the dropdown to the right of the sidebar */
}

.nav-item.manage-ai.show .dropdown-content {
    display: block;
}

.nav-item.manage-ai .dropdown-content li a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.nav-item.manage-ai .dropdown-content li:hover {
    background-color: #5348c8;
}

/* Tab Styles */
.tabs {
    display: flex;
    border-bottom: 2px solid #360374;
    margin-bottom: 20px;
}

.tab-button {
    padding: 10px 20px;
    cursor: pointer;
    background-color: #360374;
    color: white;
    border: 1px solid #360374;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    transition: background-color 0.3s;
    font-size: 1em;
}

.tab-button:not(:first-child) {
    margin-left: -1px;
}

.tab-button.active {
    background-color: #5348c8;
    color: white;
}

.tab-content {
    display: none;
    border: 1px solid #360374;
    padding: 20px;
    border-radius: 0 4px 4px 4px;
}

/* AI Dropdown Styles */
.styled-select {
    font-size: 1.1em;
    padding: 10px;
    border: 2px solid #360374;
    border-radius: 8px;
    background-color: #e5e5ff;
    color: #360374;
    width: 100%;
    margin-bottom: 20px;
}

/* Voice Section Styles */
.voice-container {
    padding: 20px;
}

.voice-list ul {
    list-style-type: none;
    padding: 0;
}

.voice-list ul li {
    padding: 8px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.voice-list ul li:hover {
    color: #5348c8;
}

.voice-list i {
    margin-right: 10px;
}

/* Video Avatar Section Styles */
.video-avatar-container {
    padding: 20px;
}

.avatar-preview {
    margin-top: 20px;
}

.avatar-preview img {
    max-width: 100%;
    border-radius: 8px;
    border: 2px solid #360374;
}

/* Topics & Personality */

.form {
    max-width: 600px;
    margin: 0 auto;
}

textarea {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #ccc;
    transition: all 0.3s ease-in-out;
    outline: none;
    font-size: 1em;
    resize: vertical;
}

textarea:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 8px #6c63ff;
}

.description {
    font-size: 1em;
    color: #555;
    margin-top: 10px;
    max-width: 600px;
    margin: 10px auto; /* Center align with the form */
    text-align: left;
}

/* Edit AI */ 

.tab-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tab {
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid #ccc;
    background-color: #360374;
    color: white;
    margin-right: 5px;
    border-radius: 8px;
}

.tab.active {
    background-color: #5348c8;
}

.section {
    display: none;
}

.section.active {
    display: block;
}

.form-btn {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.form-btn .btn-cancel {
    text-decoration: none;
    color: #6c63ff;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1em;
}

.form-btn .btn-cancel:hover {
    color: #333;
}

.form-btn .btn {
    margin-left: 10px;
}

/* Billing */
.billing-container {
    max-width: 50%;
    margin: auto;
}

.billing-details {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.billing-details h3 {
    margin-bottom: 20px;
}

.btn-container {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 10px;
}

.btn-container button {
    margin-top: 10px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 60%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.pricing-table {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    margin-bottom: 40px;
}

.pricing-plan {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 18%;
}

.pricing-plan h3 {
    margin: 10px 0;
}

.pricing-plan p {
    font-size: 0.9em;
    margin: 10px 0;
}

.pricing-plan .price {
    font-size: 1.5em;
    margin: 20px 0;
}

.pricing-plan .btn {
    margin-top: 20px;
}

/* Customize Page Specific Styles */
.tab-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tab-button {
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid #ccc;
    background-color: #360374;
    color: white;
    margin-right: 5px;
    border-radius: 8px;
    font-size: 0.9em;
}

.tab-button.active {
    background-color: #5348c8;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

h1, h2 {
    text-align: center;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
}

.customize-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.customize-settings {
    width: 45%;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.customize-settings label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.customize-settings input[type="color"],
.customize-settings input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    color: #333;
}

.chat-widget-preview {
    width: 45%;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat-widget {
    width: 100%;
    max-width: 400px;
    background-color: #f0f0f0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.chat-header {
    background-color: #360374;
    padding: 10px;
    text-align: center;
    color: #fff;
    border-radius: 8px 8px 0 0;
}

.chat-messages {
    flex-grow: 1;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    margin: 10px 0;
}

.ai-message,
.user-message {
    margin: 10px 0;
    padding: 10px;
    border-radius: 8px;
    max-width: 80%;
}

.ai-message {
    background-color: #e5e5ff;
    color: #360374;
    align-self: flex-start;
}

.user-message {
    background-color: #5348c8;
    color: #fff;
    align-self: flex-end;
}

.chat-input {
    display: flex;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 0 0 8px 8px;
}

.chat-input input {
    flex-grow: 1;
    padding: 10px;
    border: none;
    border-radius: 8px 0 0 8px;
    background-color: #e5e5ff;
    color: #333;
}

.chat-input button {
    padding: 10px;
    border: none;
    border-radius: 0 8px 8px 0;
    background-color: #360374;
    color: #fff;
    cursor: pointer;
}

.video-avatar-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.video-avatar-container h2 {
    width: 100%;
}

.uploaded-photo {
    margin-bottom: 20px;
}

.uploaded-img {
    max-width: 150px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.avatar-preview {
    margin-top: 20px;
}

.avatar-preview-img {
    max-width: 250px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.avatar-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.avatar-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Profile Dropdown Styles */
.header {
    display: flex;
    justify-content: flex-end;
    padding: 10px 20px;
    background-color: #f0f0f0;
    border-bottom: 1px solid #ccc;
}

.profile-dropdown {
    position: relative;
    display: inline-block;
}

.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.profile-menu {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    min-width: 160px;
    border-radius: 8px;
    overflow: hidden;
}

.profile-menu a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.profile-menu a:hover {
    background-color: #f1f1f1;
}

.profile-dropdown:hover .profile-menu {
    display: block;
}

/* Spacing and alignment for the files section */
.document-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 20px;
    display: inline-block;
}

.document-list li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 25px;
}

.document-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #333;
}

.section-heading-div h2 {
    margin-bottom: 10px;
    text-align: center;
}

.section-heading-div h4 {
    margin-bottom: 15px;
    text-align: center;
}

.section-heading-div p {
    margin-bottom: 20px;
    text-align: center;
}

/* Voice Input */

/* Voice Input Styles */
.voice-input-right {
    text-align: right;
    font-size: 0.9em;
    color: #333;
    margin-top: 5px;
}

.voice-input-right i {
    margin-right: 5px;
}


/* Microphone Container Styles */
.microphone-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 10px;
    color: #333;
}

.microphone-container i {
    margin-right: 5px;
}

/* Header Styles */
.header {
    background-color: #360374;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-dropdown {
    position: relative;
    display: inline-block;
}

.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.profile-menu {
    display: none;
    position: absolute;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.profile-dropdown:hover .profile-menu {
    display: block;
}

.profile-menu a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.profile-menu a:hover {
    background-color: #ddd;
}

/* Search Bar Styles */
.search-container {
    position: relative;
    width: 300px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #ccc;
    padding-right: 35px; /* Space for the search icon */
}

.search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
}
