
:root {
    --bs-heading-color: #fff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #000 !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: unset;
    position: relative;
}


body::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-image: url('/static/dist/img/body-bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #000;
    background-blend-mode: hard-light;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

body::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100vh;
    left: -10%;
    background-repeat: no-repeat;
    top: -20px;
    background-size: cover;
    background-position: left top;
    z-index: -1;
    background-image: url('/static/dist/img/bg-color.webp');
}

[src=''] {
    visibility: hidden;
}

td.action-buttons button {
    cursor: pointer;
}

button.crm-btn.connected {
    width: 60px;
    height: 30px;
}

button.webhook-send {
    background: url('/static/dist/img/webhook-icon.png') no-repeat;
    background-size: contain;
    background-position: center center;
}

button.webhook-config {
    background: url('/static/dist/img/webhook-config.png') no-repeat;
    background-size: contain;
    background-position: center center;
}


button[data-crm="zoho"] {
    background: url('/static/dist/img/zoho-black.svg') no-repeat;
    background-size: contain;
    background-position: center center;
}

#body.dark-mode button[data-crm="zoho"] {
    background: url('/static/dist/img/zoho-white.svg') no-repeat;
}

button[data-crm="salesforce"] {
    background: url('/static/dist/img/salesforce-black.svg') no-repeat;
    background-size: contain;
    background-position: center center;
}

#body.dark-mode button[data-crm="salesforce"] {
    background: url('/static/dist/img/salesforce-white.svg') no-repeat;
    background-size: contain;
    background-position: center center;
}

button[data-crm="hubspot"] {
    background: url('/static/dist/img/hubspot-black.svg') no-repeat;
    background-size: contain;
    background-position: center center;
}

#body.dark-mode button[data-crm="hubspot"] {
    background: url('/static/dist/img/hubspot-white.svg') no-repeat;
    background-size: contain;
    background-position: center center;
}

button[data-crm="gohighlevel"] {
    background: url('/static/dist/img/gohighlevel-black.png') no-repeat;
    background-size: contain;
    background-position: center center;
}


#body.dark-mode button[data-crm="gohighlevel"] {
    background: url('/static/dist/img/gohighlevel-white.png') no-repeat;
    background-size: contain;
    background-position: center center;
}

/* #body.dark-mode .action-buttons button {
    filter: invert(1)brightness(100%);
} */

.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.5);
    justify-content: center;
    align-items: center;
}

/* Modal content */
.modal-content {
    background-color: white;
    color: #000;
    padding: 20px;
    border-radius: 10px;
    width: 500px;
    max-width: 90%;
    text-align: center;
}

/* Grid of CRM options */
.crm-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 20px 0;
}

/* CRM card */
.crm-option {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: border-color 0.3s;
}

/* Selected CRM card */
.crm-option.selected {
    border-color: #3498db;
}

/* Connect button */
.connect-btn {
    background-color: #ddd;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: not-allowed;
    transition: background-color 0.3s;
}

.cancel-btn {
    background-color: red !important;
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    margin-left: 10px;
    cursor: pointer;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 200px;
    background-color: #e9ecef;
}

.btn-primary {
    background-color: #2575fc;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
}

.btn-primary:hover {
    background-color: #1a5dbb;
}

footer {
    background-color: #333;
    color: white;
    padding: 1rem 0;
    margin-top: auto;
}

.bot-svg {
    width: 100%;
    height: 100%;
}

:root {
    --ubuntu: "Ubuntu", sans-serif;
}

.head-nav {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-radius: 36px;
    position: relative;
    display: inline-flex;
    backdrop-filter: blur(50px);
    padding: 10px 30px;
}

.head-nav .nav-link.disabled {
    color: #0080FF;
}

.head-nav li a {
    font-size: 12px;
    color: #fff;
    font-family: var(--ubuntu);
}

.banner-row::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-repeat: no-repeat;
    background-size: contain;
    width: 340px;
    height: 411px;
    z-index: -1;
    max-width: 30%;
    background-image: url('/static/dist/img/robot.webp');
}

.banner-row {
    position: relative;
}

.banner-content {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
}

.banner-content h1 {
    font-size: 50px;
    font-weight: 700;
    font-family: var(--ubuntu);
}

.banner-content p {
    font-size: 20px;
    font-family: var(--ubuntu);
}

.banner-content h1 span {
    color: #0080FF;
    font-family: var(--ubuntu);
    text-transform: uppercase;
}

.titanium h1 {
    color: #fff;
    font-family: var(--ubuntu);
    font-weight: 700;
    margin-top: 0px !important;
}

.titanium label {
    color: #fff !important;
    font-family: var(--ubuntu);
    text-align: left !important;
}

.titanium label.text-right {
    text-align: end !important;
}

.titanium form {
    width: 90%;
    margin: auto;
}

.titanium form .text-left {
    text-align: left !important;
}

.titanium form .text-center {
    text-align: center;
}

.titanium form .text-end {
    text-align: end !important;
}

.titanium form :is(input, select) {
    background-color: #001b6e !important;
    border-color: #001b6e !important;
    color: #fff;
}

.titanium form input::placeholder {
    color: #fff;
}

.titanium form .marg-5 {
    margin-top: 30px !important;
}

.bottom-btns .btn-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100% !important;
}

.bottom-btns :is(a, button) {
    font-size: 14px !important;
    border-radius: 5px !important;
    padding-inline: 10px !important;
    min-width: 200px;
    max-width: 200px;
    text-decoration: none !important;
    text-align: center;
}

textarea {
    background: transparent !important;
    color: #fff !important;
}

.btn {
    border-radius: 5px !important;
    color: #fff !important;
}

.body {
    margin-bottom: 50px;
}

.banner-content * {
    color: #fff;
    font-family: var(--ubuntu);
}

.bottom-banner {
    background-color: rgba(0, 128, 255, 0.20);
    border-radius: 20px;
    padding: 30px 10% 30px 30px;
}

.bottom-banner * {
    color: #fff;
    text-align: left;
}

.bottom-banner h2 {
    font-size: 60px;
    font-family: var(--ubuntu);
}

.bottom-banner p {
    font-size: 20px;
    font-family: var(--ubuntu);
}

.bottom-banner img {
    height: 300px;
    object-fit: contain;
}

.bottom-banner .btn {
    display: inline-block;
    padding: 11px 41px;
    font-size: 20px;
    font-family: var(--ubuntu);
    transition: 0.3s;
    border-radius: 5px;
    border: 1px solid #0080FF;
}

.bottom-banner .btn:hover {
    background-color: #0080FF;
    transition: 0.3s;
}

.banner-search :is(select, input) {
    font-size: 18px;
    padding: 15px 40px;
    color: #000;
    font-family: var(--ubuntu);
}

.banner-search {
    margin-top: 30px;
}

.banner-search :is(select) {
    border-top-left-radius: 5px;
    padding-right: 60px !important;
    border-bottom-left-radius: 5px;
    appearance: none;
    font-family: var(--ubuntu);
    background-image: url('/static/dist/img/dropdown.svg');
    background-size: 18px 9px;
    background-position: center right 20px;
    background-repeat: no-repeat;
}

.banner-search :is(select) option {
    color: #000;
    font-family: var(--ubuntu);
}

.banner-search :is(input) {
    border-radius: 0px;
}

.banner-search :is(input)::placeholder {
    color: rgba(66, 75, 90, 0.45);
}

button.btn-search {
    background-color: #0080FF !important;
    border: 1px solid #0080FF;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    font-size: 0px !important;
    background-image: url('/static/dist/img/search-icon.svg');
    background-size: 23px 23px;
    width: 60px;
    background-position: center center;
    background-repeat: no-repeat;
}

.filter-list {
    list-style: none;
    border-radius: 20px;
    padding-left: 0px;
    background-color: rgba(0, 11, 46, 0.5);
    height: 100%;
}

.filter-list li {
    padding: 14px 26px;
    display: flex;
    flex-wrap: wrap;
    transition: 0.3s ease-in-out;
}

.filter-list * {
    color: #fff;
}

.filter-list li a {
    font-size: 20px;
    width: 72%;
    line-height: 25px;
    font-family: var(--ubuntu);
    text-decoration: none;
    display: inline-block;
}

.filter-list li span.count {
    width: 28%;
    display: inline-block;
    text-align: end;
    font-family: var(--ubuntu);
}

.filter-list li:is(.active, :hover) {
    background-color: #0080FF;
    transition: 0.3s ease-in-out;
}

.filter-list li:hover {
    background-color: #8b9eb0;
    transition: 0.3s ease-in-out;
}

.filter-list li:first-of-type {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.bot-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 13px 13px 20px 13px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.bot-card strong {
    display: block;
    font-size: 16px;
    color: #001453;
    font-weight: 700;
    height: 48px;
    font-family: var(--ubuntu);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
}

.bot-card p {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--ubuntu);
    color: #757575;
}

.bot-card .btn {
    background-color: #001453;
    display: inline-block;
    border-radius: 0px !important;
    font-size: 13px !important;
    font-family: var(--ubuntu);
    font-weight: 700;
    width: auto !important;
}

.bot-card img {
    display: block;
    margin: auto;
    margin-bottom: 30px;
    height: 156px;
    object-fit: contain;
    max-width: 100%;
    object-position: top center;
    margin-top: -40px;
}

.bots-wrapper {
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #000B2E;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.scroll-right {
    direction: rtl;
    overflow-y: auto;
    max-height: 780px;
}

.titanium .scroll-right {
    max-height: 580px;
}

.scroll-right>div {
    direction: ltr;
}

.bots-section {
    margin: 50px 0px;
}

.bots-section h3 {
    font-size: 30px;
    font-weight: 700;
    font-family: var(--ubuntu);
    color: #fff;
    margin-bottom: 40px;
}

::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 25px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #0080FF;
    border-radius: 25px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #0080FF;
    border-radius: 25px;
}

#footer {
    display: none;
}

.titanium .bot-card p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    min-height: 42px;
}

.btn-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-wrapper a {
    padding: 8px 25px;
    background-color: #0080FF;
    border-radius: 5px;
    color: #fff;
    margin-top: 20px;
    border: 1px solid #0080FF;
    text-decoration: none;
    min-width: 144px;
    font-weight: 700;
    display: inline-block;
}

.btn-wrapper a:hover {
    color: #fff;
    border-color: #0080FF;
}

.btn-wrapper a:first-of-type {
    margin-right: 15px;
}

.btn-wrapper a:last-of-type {
    position: relative;
    padding-left: 40px;
}

.bottom-btns button.green {
    background-color: #34B24D !important;
    border: 1px solid #34B24D;
    transition: o.3s;
}

.bottom-btns button:hover {
    background-color: transparent !important;
    font-weight: 500 !important;
    transition: 0.3s;

}

.btn.red {
    background-color: #E20000 !important;
    border-color: #9f3232;
}

.btn.red.logout {
    background-color: #D91656 !important;
    border-color: #D91656;
    transition: 0.3s;
}

.btn.red:hover {
    background-color: #9f3232 !important;
    border-color: #9f3232;
    transition: 0.3s;
}

.btn.green {
    background-color: green !important;
    border-color: #1eac1e;
}

.btn.green:hover {
    background-color: #1eac1e !important;
    border-color: #1eac1e;
}

.top-infobar .btn.green {
    background-color: #26ADE3 !important;
    transition: 0.3s;
    border-color: #26ADE3 !important;
}

.top-infobar .btn.green:hover {
    background-color: #333 !important;
    border-color: #333 !important;
    transition: 0.3s;
}

.datd-label {
    padding: 5px 10px;
    background-color: #0080FF;
    display: block;
}

.user15 :is(.btn, button) {
    padding: 5px 30px !important;
    margin-top: 30px;
    border-radius: 0px !important;
}

.btn-wrapper a:last-of-type::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-image: url('/static/dist/img/white-house.svg');
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-size: contain;
}

footer {
    position: relative;
    z-index: 1;
}

.body::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 40%;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('/static/dist/img/bg.webp');
}

.body {
    margin-bottom: 50px;
}

.margb-40 {
    margin-bottom: 30px;
}

.margt-40 {
    margin-top: 70px;
}

.bot-card .btn:hover {
    background-color: transparent;
    transition: 0.3s;
    color: #001453 !important;
}

/* h1, h2, h3, h4, h5, .p-2 {
    font-family: var(--ubuntu);
    color: #fff;
} */

.bottom-btns :is(a, button) {
    font-size: 14px !important;
    border-radius: 5px !important;
    padding-inline: 10px !important;
    min-width: 200px;
    max-width: 200px;
    text-decoration: none !important;
    text-align: center;
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");

}

.sidebar .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.pl-100 {
    padding-left: 100px;
}

.bottom-banner .btn,
.btn-trans {
    display: inline-block;
    padding: 11px 41px;
    font-size: 20px;
    font-family: var(--ubuntu);
    transition: 0.3s;
    border-radius: 5px;
    border: 1px solid #0080FF;
}

.google form {
    padding-bottom: 70px;
}

#viewlink {
    border-left: 1px solid #fff !important;
    border-right: 1px solid #fff !important;
}

#viewname {
    border-left: 1px solid #fff !important;
}

.titanium form textarea {
    border-radius: 10px;
    padding: 15px 10px;
    min-height: 450px;
}

.titanium form :is(input, select, textarea),
span.input-group-text {
    background-color: #001b6e !important;
    border: 1px solid #001b6e !important;
    color: #fff;
    padding: 8px 10px !important;
}

button.grey {
    background-color: #d1d1d1 !important;
    color: #001b6e !important;
}

.light {
    color: #fff !important;
}

.blue {
    color: #0080FF;
    text-transform: uppercase;
}

.max-w {
    max-width: 100%;
}

.table-ti {
    border: 5px solid #0080FF !important;
    border-radius: 20px;
    padding: 0px;
    max-width: 100%;
    width: 100%;
    overflow-x: auto;
    margin-inline: auto;
}

.bots-wrapper :is(th) {
    background-color: #0080FF;
    padding-top: 20px;
    padding-bottom: 20px;
}

.bots-wrapper :is(th, td) {
    background-color: transparent;
    color: #fff;
    padding: 10px 10px 10px 20px;
    text-align: left;
    font-size: 16px;
}

.table-ti .table>:not(caption)>*>* {
    max-width: 260px;
}

#results-container td.contact-name .c-img :is(span, .main-right) {
    text-align: left;
}

#results-container td.contact-name .c-img :is(span, .main-right) p strong {
    display: block;
    font-weight: 500;
}

#results-container td.contact-name .c-img :is(span, .main-right) p {
    font-weight: 700;
    margin-bottom: 2px;
    margin-top: 0px;
}

#results-container td.contact-name .c-img :is(span, .main-right) p:has(strong) {
    font-weight: unset;
    margin: 0px;

}

.table>:not(caption)>*>* {
    border-color: #0080FF;
    vertical-align: middle;
}

.bots-wrapper :is(th) {
    background-color: #0080FF;
    padding-top: 20px;
    padding-bottom: 20px;
}


.td-prof  a.btn {
    padding: 2px 5px;
    color: #fff;
    font-size: 13px;
    border-radius: 2px !important;
}


.td-prof {
    white-space: nowrap;
}

.view-prof {
    background-color: green;
    border: 1px solid green;
}

.view-prof:hover {
    border: 1px solid green !important;
}

.edit-prof {
    background-color: #0080FF;
    border: 1px solid #0080FF;
}


.edit-prof:hover {
    border: 1px solid #0080FF !important;
}

.del-prof {
    background-color: #E20000;
    border: 1px solid #E20000;
}

.del-prof:hover {
    border: 1px solid #E20000 !important;
}


.signup.bots-wrapper {
    max-width: 900px;
    margin-inline: auto;
}

button.full-w {
    width: 100%;
    color: #fff !important;
}

.role-row label {
    width: calc(100% - 10px) !important;
    min-height: 61px;
    font-size: 14px !important;
    display: flex;
    flex-direction: column;
    justify-self: center;
    border: 1px solid #0080FF !important;
    border-radius: 10px !important;
    color: #fff !important;
}

.role-row label:hover {
    border: 1px solid #0080FF !important;
}

.role-row :is(.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active) {
    background-color: #0080FF !important;
}

#submit {
    background-color: #0080FF !important;
    padding: 10px 30px !important;
    transition: 0.3s;
}

.welcome.bots-wrapper {
    max-width: 960px;
    margin-inline: auto;
}

.wrap {
    margin-top: 50px;
}

.wrap button {
    background-color: #0080FF;
}

.wrap button {
    display: inline-block;
    width: auto !important;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px !important;
}

.wrap button:first-of-type {
    background-color: #34B24D !important;
}

.wrap button:hover {
    background-color: transparent !important;
}

.wrap button:first-of-type:hover {
    border: 1px solid #34B24D !important;
}

.text-left {
    text-align: left;
}

.titanium.welcome form {
    width: 100%;
}

.new-cont {
    display: flex;
    min-height: 100vh;
    position: relative;
    background-color: rgba(0, 128, 255, 0.20);
    position: relative;
}

.sidebar-toggle {
    color: #fff;
    font-size: 25px;

}

.sidebar {
    width: 250px;
    transition: 0.3s;
    color: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    overflow-y: auto;
    padding-top: 20px;
    margin-top: 0px;
}

.sidebar {
    border-right: 1px solid #eeeeee21;
    box-shadow: 0px 0px 15px 2px #0000002b;
    background-color: rgba(0, 20, 83, 0);
    border-top-right-radius: 7px;
}

.sidebar.show {
    transition: 0.3s;

}

.sidebar form {
    margin-left: -300px !important;
}

.sidebar.show form {
    margin-left: 00px !important;
}

.sidebar {
    opacity: 0;
}

.sidebar.show {
    opacity: 1;
}

.sidebar-header h3 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #fff;
}

.criteria-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.criteria-list li {
    margin-bottom: 10px;
}

li .left-wrapper {
    text-align: left;
    padding: 10px;
    background-color: rgba(0, 128, 255, 0.20);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    outline: none;
    position: relative;
}

.left-wrapper button {
    text-align: left;
    background-color: unset;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    outline: none;
    position: relative;

}

.left-wrapper button i {
    padding-right: 5px;
}

.left-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.criteria-content {
    display: none;
    position: absolute;
    left: 270px;
    margin-top: -30px;
    width: 350px;
    background-color: #fff;
    border-left: 1px solid #ddd;
    padding: 20px;
    z-index: 2;
    overflow-y: auto;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.criteria-group {
    margin-bottom: 10px;
}

.criteria-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #fff;
}

.criteria-group input[type="text"],
.criteria-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #0080FF;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.criteria-group textarea {
    resize: vertical;
    min-height: 60px;
}

/* Align the checkbox and its label on the same line */
.criteria-group .checkbox-wrapper {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.criteria-group .checkbox-wrapper label {
    color: #fff;
    margin-bottom: 0px;
}

.criteria-group input[type="checkbox"] {
    cursor: pointer;
    margin: 0;
    margin-right: 5px;
    width: auto !important;
}

.extras {
    margin-top: 20px;
}

.search-button {
    width: 100%;
    padding: 10px;
    background-color: #3498db !important;
    color: #fff !important;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.my-3 {
    margin: 10px 0px;
}

.search-button:hover {
    background-color: #2980b9;
}

.content {
    flex-grow: 1;
    padding: 20px;
    text-align: center;
    background-size: 500px;
    background-position: center center;
    background-repeat: no-repeat;
}

.content:has(#spinner[style="display: block;"]) {
    background-image: url('/static/dist/img/search-right.png');
}

main.content {
    max-width: calc(100% - 300px);
}

main.content:has(table) {
    background-image: unset;
    max-width: calc(100% - 142px);
    transition: 0.5s;
}

.container.new-cont:has(.sidebar.show) main.content {
    max-width: calc(100% - 306px);
}

main.content #results-container,
:is(.default-table) {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: auto;
    max-height: calc(100vh - 300px);
}

main.content #results-container table {
    min-width: 1100px;
}

a.company-wrapper.c-img {
    text-align: left;
    max-width: 200px;
}

td.contact-name {
    max-width: 270px !important;
    min-width: 270 !important;
}

.content h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}

.demo-button {
    background-color: rgba(0, 128, 255, 0.20);
    border: 2px solid #26ADE3;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.3s;
    cursor: pointer;
    margin-bottom: 20px;
    background-color: #26ADE3;
}

.demo-button:hover {
    background-color: #333;
    border-color: #333;
    transition: 0.3s;
    color: #fff;
}

.hide-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    font-size: 14px;
    color: #3498db;
    cursor: pointer;
}

.hide-button:hover {
    text-decoration: underline;
}

[type="checkbox"] {
    vertical-align: middle;
}

.location-options {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 20px;
}

.location-options li {
    margin-bottom: 10px;
}

.location-option-button {
    width: 100%;
    text-align: left;
    padding: 10px;
    background-color: rgba(0, 128, 255, 0.20);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
    outline: none;
}

.location-option-button:hover {
    background-color: rgba(0, 128, 255, 0.20);
}

.input-container {
    display: none;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Make sure that the main content is positioned relative */
main.content {
    position: relative;
}

/* Centering the spinner within the main content area */
#spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 3s linear infinite;
    z-index: 1000;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Styling for the results container */
#results-container {
    display: none;
    /* Hide the results container initially */
    margin-top: 20px;
    padding: 20px;
    background-color: rgba(52, 152, 219, 0.1);
    border: 1px solid #3498db;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.default-table {
    margin-top: 20px;
    padding: 20px;
    background-color: rgba(52, 152, 219, 0.1);
    border: 1px solid #3498db;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.default-table {
    background-color: rgba(255, 255, 255, 1);
}

/* Styling for the results table */
.results-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.results-table th,
.results-table td,
.default-table :is(th, td) {
    padding: 12px 15px;
    text-align: left;
    color: #fff;
}

.default-table :is(th, td) {
    font-size: 12px;
}

.default-table table {
    border: 1px solid #000;
}

.default-table :is(td) {
    color: #000;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
}

.default-table tr td:last-of-type {
    border-right: 0px;
}

.default-table tr:last-of-type td {
    border-bottom: unset;
}

.results-table th,
.default-table th {
    background-color: #3498db;
    border-bottom: 2px solid #2980b9;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.results-table td {
    border-bottom: 1px solid #2980b9;
}

.results-table tr:hover {
    background-color: rgba(52, 152, 219, 0.2);
}

.results-table tr:last-child td {
    border-bottom: none;
}

#jobTitle::placeholder {
    color: #fff;
}

:is(.new-cont) :is(input),
.new-cont select {
    display: block;
    border-radius: 4px;
    background-color: transparent;
    border: 1px solid #0080FF !important;
    padding: 8px 10px;
    color: #fff;
    width: 100% !important;
    margin-top: 10px;
    box-sizing: border-box;
}

.new-cont select {
    color: #fff;
    background-repeat: no-repeat;
    background-size: 10px;
    font-size: 15px;
    appearance: none;
    background-position: center right 10px;
}

.new-cont select option {
    color: #000;
}

:is(.new-cont) :is(input, select):is(:focus, :focus-visible) {
    border: 2px solid #0080FF;
    outline: unset;
}

:is(#location, #skills, .new-cont) :is(input, select)::placeholder {
    color: #000;
}

.new-cont #lead-tags {
    max-width: 90%;
}

.new-cont input#industry {
    width: 95%;
    border: 1px solid #0080FF;
    padding: 8px 10px;
    border-radius: 4px;
    margin-top: 10px;
    background-color: transparent;
    color: #fff;
}

.new-cont .form-check-inline {
    display: inline-block;
    width: 100%;
}

.new-cont .form-check-inline input[type="checkbox"] {
    background-color: #001b6e !important;
    border: 1px solid #001b6e !important;
    color: #fff;
    width: auto !important;
    display: inline-block;
    padding: 8px 10px !important;
}

.new-cont .form-check-inline label {
    display: inline-block;
}

label[for="jobTitle"] {
    margin-top: 20px;
}

.new-cont input#industry::placeholder {
    color: #fff;
}

.c-img {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.c-img img {
    width: 40px !important;
    height: 40px !important;
    display: inline-block;
}

.c-img :is(span, .main-right) {
    flex-direction: column;
    justify-content: center;
    display: flex;
    font-size: 14px;
    width: calc(100% - 45px);
    padding-left: 5px;
}

button.crm-btn, button.export-csv {
    padding: 0px;
    background-color: unset;
    color: #0080FF;
    display: inline-block;
    border: unset;
}

button.export-csv svg {
    width: 20px;
    height: 20px;
    margin-left: 5px;
}

#results-container * {
    font-size: 12px;
}

#results-container :is(td, th) {
    max-width: 180px;
    text-align: center;

}

#results-container td:is(#email, #phone, .contact-name, .company-name) {
    min-width: 110px;
}

#results-container td#status {
    min-width: 48px;
}

.title-th {
    max-width: 150px;
}

.phone-th {
    min-width: 100px;
}

.top-filterbar {
    display: none;
}

main.content:has(table) .top-filterbar {
    display: block;
}

.top-filterbar a,
.verify-btn {
    display: inline-block;
    border-radius: 30px;
    background-color: #26ADE3;
    text-decoration: none;
    min-width: 120px;
    max-width: 100%;
    text-align: center;
    border: 1px solid #26ADE3;
    padding: 10px 30px;
    margin-top: 15px;
    transition: 0.3s;
    position: relative;
}

.top-filterbar a:hover {
    background-color: #333;
    border-color: #333;
    color: #fff;
    transition: 0.3s;
}

.top-filterbar a.clear-search {
    background-color: #D91656;
    border-color: #D91656;
    transition: 0.3s;
}

.top-filterbar a.clear-search:hover {
    background-color: #9f3831;
    color: #fff;
    transition: 0.3s;
}

.top-filterbar li {
    display: inline-block;
    position: relative;
}

.top-filterbar a:not(a:last-child) {
    margin-right: 10px;
}

.top-filterbar a i {
    margin-right: 10px;
    margin-left: 5px;

}

.download-sub {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    left: 0;
    transform: translateY(10px);
    top: 46px;
    padding: 20px 15px;
    border: 1px solid #333;
    text-align: left;
    background: #fff;
    border-radius: 4px;
    z-index: 99;
    width: 100%;
}

.top-filterbar li:hover .download-sub {
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
    transform: translateY(0px);
}

.download-sub label {
    text-align: left;
    color: #000;
    font-size: 14px;
}

.download-sub input {
    width: auto !important;
    display: inline-block;
}

.download-sub button {
    margin-top: 10px;
}

.download-sub input {
    color: #000;
}

.verify-btn {
    width: 100%;

}

.download-sub .radio-container {
    display: block;
}

.top-fil {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.top-fil * {
    list-style: none;
}

.top-fil>div {
    margin-right: 30px;
    margin-top: 15px;
    min-width: 80px;
}

.top-fil :is(input, select) {
    display: inline-block;
    width: auto !important;
    margin-top: 0px !important;
    min-width: 70px;
    appearance: auto !important;
}

#page {
    width: 40px !important;
    min-width: unset !important;
    border-color: #fff !important;
    min-height: 19px !important;
    margin-top: 0px !important;
}

.pagination {
    padding-left: 0px;
    margin: 0px;
}

.pagination li {
    display: inline-block;
}

.pagination li a {
    display: inline-block;
    min-width: 20px;
    padding: 5px 5px;
    /* border: 1px solid #fff; */
    border: 1px solid #0080FF !important;
    color: #fff;
    transition: 0.3s;
    border-radius: 2px;
}

.pagination li:is(.active, :hover) a {
    background-color: #0080FF;
    border-color: #0080FF;
    cursor: pointer;
    transition: 0.3s;
}

.pagination li a:disabled {
    background-color: #99a6b2;
    border-color: #99a6b2;
    cursor: not-allowed;
    transition: 0.3s;
}


.verify-popup {
    position: fixed;
    inset: 0;
    margin: auto;
    display: none;
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
    flex-direction: column;
    justify-self: center;
    z-index: 999;
    height: fit-content;
}

.verify-cont {
    text-align: center;
    transition: 0.3s;
    display: none;
    margin: auto;
    max-height: 90vh;
    overflow-y: auto;
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 5px;

}

.verify-popup.show {
    display: flex;
    width: 900px;
    max-width: 90%;
    margin-inline: auto;
    transform: scale(1);
    opacity: 1;
    transition: 0.3s;
    visibility: visible;
}

.verify-popup.show .verify-cont {
    display: block;
    transition: 0.3s;
}

.verify-popup h3 {
    color: #000;
    text-align: center;
    font-size: 22px;
    margin-top: 0px;
    margin-bottom: 30px;
}

a.close-verify {
    display: block;
    font-size: 20px;
    text-align: end;
    position: absolute;
    right: 40px;
}

.verify-check {
    margin-bottom: 30px;
}

.download-btn {
    color: #fff;
    background-color: #0080FF;
    padding: 10px 30px;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    display: inline-block;
    border: 1px solid #0080FF;
    margin-inline: auto;
    transition: 0.3s;
}

.download-btn i {
    margin-right: 5px;
    color: #fff;
}

.download-btn:hover {
    cursor: pointer;
    background-color: transparent;
    transition: 0.3s;
    color: #0080FF;
}

.download-btn:hover i {
    color: #0080FF;
}

a.close-verify:hover {
    cursor: pointer;
}

.email-card :hover {
    cursor: pointer;
}

.email-card {
    display: block;
    text-decoration: none;
    padding: 30px 15px;
    border: 1px solid #000;
    border-radius: 15px;
    margin-bottom: 30px;
    transition: 0.3s;
    flex-basis: calc(33% - 50px);
}

.email-card:is(:hover, .active) {
    border-color: #0080FF;
    box-shadow: 0px 2px 0px 4px rgba(0, 128, 255, 0.3);
    transition: 0.3s;
}

.email-card p {
    margin-bottom: 0px;
}

.email-card i {
    font-size: 50px;
    color: #0080FF;
    display: inline-block;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 30px;
    position: relative;
    background-color: rgba(0, 128, 255, 0.3);
}

.email-card i::after {
    content: '\f058';
    font-family: 'Fontawesome';
    color: #34B24D;
    position: absolute;
    right: 4px;
    bottom: 12px;
    font-size: 19px;
}

.email-card.valid-all i:after {
    content: '\f059';
    color: #eed202;
}

.email-card.all i:after {
    content: '\f06a';
    color: red;
}

.verify-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    row-gap: 30px;
}

#results-container td a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

#results-container td a:hover {
    color: #0080FF;
    transition: 0.3s;
}

.locked-fone,
.locked-email,
.locked-activity {
    display: none;
}

.criteria-content * {
    color: #000 !important;
}

.crm-btn.hide {
    display: none;
}

.crm-btn.show {
    display: inline-block;
}

.unlock-button.hide {
    display: none;
}

.locked-fone.show,
.locked-email.show,
.locked-activity.show {
    display: block;
}

.edit-wrap a {
    margin-left: 5px;
    display: inline-block;
}

.edit-wrap {
    opacity: 0;
    min-width: 38px;
    visibility: hidden;
}

.left-wrapper:is(.has-content) .edit-wrap {
    opacity: 1;
    visibility: visible;
}

.left-wrapper:is(.active, :hover) {
    background-color: #0080FF;
    transition: 0.3s;
}

.left-wrapper:is(.has-content) {
    background-color: #2479cf;
    transition: 0.3s;
}

.top-infobar {
    display: flex;
    justify-content: end;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    color: #fff;
    border-radius: 2px;
    padding: 10px 15px;
}

main.content:has(table) .top-infobar {
    display: flex;
}

.top-infobar .demo-button {
    margin-bottom: 0px;
    display: inline-block;
    text-decoration: none;
}

.top-infobar .demo-button:nth-child(2) {
    background-color: #0080FF;
    transition: 0.3s;
}

.top-infobar .demo-button:nth-child(2):hover {
    background-color: transparent;
    transition: 0.3s;
}

.top-infobar .tooltip {
    width: 250px;
    font-size: 14px;
    position: absolute;
    right: 0;
    top: 20px;
    text-align: center;
    background-color: #26ADE3;
    border: 1px solid #333;
    padding: 10px;
    color: #000;
    display: none;
}

.top-infobar a {
    position: relative;
}

.top-infobar a:hover .tooltip {
    display: block;
}

.credits {
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #0080FF;
    color: #fff;
    background-color: rgba(52, 152, 219, 0.3);
    background-color: #26ADE3;
    transition: 0.3s;
}

.top-infobar a i {
    padding-right: 8px;
}

#upgrade-btn {
    background-color: #26ADE3;
    transition: 0.3s;
}

:is(#upgrade-btn, .credits):hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
    transition: 0.3s;
}

.credits i {
    padding-left: 5px;
    color: #fff;
    padding-right: 0px;
}

.criteria-content .search-button {
    color: #fff !important;
    background-color: #3498db !important;
    border: 1px solid #0080FF !important;
    transition: 0.3s;
}

.criteria-content .search-button:hover {
    background-color: transparent !important;
    color: #3498db !important;
    transition: 0.3s;
    border: 1px solid #0080FF !important;
}

hr.blue-line {
    margin: 20px 0px !important;
    height: 4px;
    background-color: #0080FF;
    border-color: #0080FF;
}

button.ex-label {
    background-color: #f6b600 !important;
    padding: 8px 15px;

    border: 1px solid #f6b600 !important;
    border-radius: 5px !important;
    margin-bottom: 20px;
    width: 100% !important;
    transition: 0.3s;
}

button.ex-label:hover {
    cursor: pointer;
    background-color: transparent !important;
    transition: 0.3s;
    color: #fff !important;
}

.expert-list {
    display: none;
    margin: 0px !important;
}

.expert-list.show {
    display: block;
}

a.close-expert {
    display: block;

    text-align: end;
    margin-bottom: 10px;
}

#status {
    margin-top: 20px;
    padding: 20px;
    background-color: rgba(52, 152, 219, 0.1);
    border: 1px solid #3498db;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #fff;
}

td#status {
    white-space: nowrap;
}

#status td {
    border-bottom: 1px solid #2980b9;
}

#status * {
    font-size: 14px;
}

#status th {
    padding-left: 10px;
}

#status :is(td, th) {
    max-width: 165px;
    text-align: left;
    padding: 15px;
}

#status table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

#status table th {
    background-color: #3498db;
    border-bottom: 2px solid #2980b9;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/********************Company LookUp*******************/
#lookup-container {
    display: none;
    margin: 30px auto;
}

#lookup-container .company-profile {
    background-color: rgba(0, 128, 255, 0.20);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 25px;
}

#lookup-container .company-header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

#lookup-container .company-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
}

#lookup-container .company-info {
    flex-grow: 1;
}

#lookup-container .company-name {
    margin: 0;
    font-size: 24px;
    color: #fff;
}

#lookup-container .company-type,
#lookup-container .company-industry,
#lookup-container .company-linkedin {
    margin: 5px 0;
    color: #fff;
}

#lookup-container .company-linkedin {
    color: rgba(0, 128, 255, 1);
    text-decoration: none;
    font-weight: bold;
}

#lookup-container .company-description {
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
}

#lookup-container .company-details p {
    margin: 10px 0;
    color: #fff;
}

#lookup-container .company-details a {
    color: rgba(0, 128, 255, 1);
    text-decoration: none;
}

.company-details p {
    display: flex;
    flex-wrap: wrap;
    margin: 50px;
    justify-content: space-between;
}

.company-details p :is(strong, span) {
    width: calc(50% - 16px);
    display: inline-block;
}

.company-details p :is(strong) {
    background-color: rgba(0, 128, 255, 1);
    padding: 8px;
}

.company-details p :is(span) {
    background-color: #fff;
    padding: 8px;
    color: #000;
}

#lookup-container .company-details a:hover {
    text-decoration: underline;
}

#lookup-container .company-technologies {
    margin-top: 20px;
}

#lookup-container .company-technologies h3 {
    margin-bottom: 10px;
    color: #fff;
}

#lookup-container .company-technologies ul {
    list-style-type: none;
    padding: 0;
}

#lookup-container .company-technologies ul li {
    background-color: rgba(0, 128, 255, 1);
    padding: 5px;
    display: inline-block;
    margin: 5px 2px;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
}

#body.light-mode #lookup-container * {
    color: #111;
}

.verify-email {
    background-color: rgba(0, 128, 255, 0.20);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 10px auto;
    border: 1px solid #0080FF;
}

.verify-email ul {
    padding-left: 0px;
    margin: 0px;
    list-style: none;
}

.verify-email li :is(strong, span) {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    text-align: left;
    font-weight: 400;
    width: calc(50% - 40px);
}

.verify-email li.head :is(strong, span) {
    background-color: rgba(0, 128, 255, 1);
    font-weight: 600;
}

button,
[type="button"] :hover {
    cursor: pointer;
}

.default-popup {
    display: flex;
    width: 600px;
    max-width: 90%;
    margin-inline: auto;
    transform: scale(0);
    opacity: 1;
    transition: 0.3s;
    visibility: hidden;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.default-popup .verify-cont {
    width: 100%;
}

.default-popup ul {
    padding-left: 0px;
    list-style: none;
}

.default-popup ul.credit-ul li {
    font-size: 16px;
    display: flex;
    border-top: 1px solid #898989;
    padding: 10px 0px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.default-popup ul li span.price {
    font-weight: 700;
}

.default-popup a.btn-primary {
    color: #fff;
    border-radius: 5px;
    padding-inline: 15px;
    min-width: 70px;
    display: inline-block;
}

.default-popup h3 {
    font-size: 30px;
}

.default-popup.show {
    visibility: visible;
    transition: 0.3s;
    transform: scale(1);
}

.default-popup.show .verify-cont {
    display: block;
    transition: 0.3s;
}

.main-confirmation {
    display: none;
    position: fixed;
    inset: 0;
    height: 420px;
    /* visibility: hidden; */
    opacity: 0;
    transition: 0.3s;
    transform: translateY(30px);
    margin: auto;
}

.main-confirmation.show {
    display: block;
    /* visibility: visible; */
    opacity: 1;
    transform: translateY(0px);
    transition: 0.3s;
    z-index: 9;
}

.main-confirmation .confirm-purchase {
    height: 70%;
    width: 60%;
    margin-inline: auto;
    box-shadow: 1px 2px 3px 4px rgba(0, 0, 0, 0.04);
    padding: 5px 15px 15px 15px;
    border-radius: 5px;
    text-align: center;
    background-color: #fff;
}

.confirm-purchase #card-element {
    text-decoration: none;
    font-size: 16px;
}

.confirm-purchase a {
    text-decoration: none;
    font-size: 16px;
}

a.close-verify-confirm {
    display: block;
    text-align: end;
}

a.close-verify-confirm:hover {
    cursor: pointer;
}

.confirm-purchase .btn-trans:hover {
    cursor: pointer;
}

.new-cont.overlay {
    position: relative;
}

.new-cont.overlay::before {
    position: fixed;
    inset: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.credits-popup.show:has(.main-confirmation.show)::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9;
    left: -109%;
    height: 100%;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.7);
}

.save-search.show,
.save-criteria.show {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    max-width: 500px;
    transition: 0.3s;
}

/* .save-search.show .verify-cont,
.save-criteria.show .verify-cont {
    display: block;
    text-align: left;
} */

.save-search h3,
.save-criteria h3 {
    text-align: left;
    margin-top: 0px;
    font-size: 20px;
}

.save-search input,
.save-criteria input {
    display: block;
    padding: 7px 15px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #0080FF;
    margin-bottom: 20px;
}

.save-search .btn-trans,
.save-criteria .btn-trans {
    padding: 0px;
    border: unset;
    margin-left: 10px;
    font-size: 16px;
}

td#email {
    word-break: break-all;
}

.default-popup {
    display: flex;
    width: 600px;
    max-width: 90%;
    margin-inline: auto;
    transform: scale(0);
    opacity: 1;
    transition: 0.3s;
    visibility: hidden;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.default-popup .verify-cont {
    width: 100%;
}

.default-popup ul {
    padding-left: 0px;
    list-style: none;
}

.default-popup ul.credit-ul li {
    font-size: 16px;
    display: flex;
    border-top: 1px solid #898989;
    padding: 10px 0px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.default-popup ul li span.price {
    font-weight: 700;
}

.default-popup a.btn-primary {
    color: #fff;
    border-radius: 5px;
    padding-inline: 15px;
    min-width: 70px;
    display: inline-block;
}

.default-popup.show {
    visibility: visible;
    transition: 0.3s;
    transform: scale(1);
}

.default-popup.show .verify-cont {
    display: block;
    transition: 0.3s;
}

.main-confirmation {
    position: fixed;
    inset: 0;
    height: 420px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    transform: translateY(30px);
    margin: auto;
}

.main-confirmation.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    transition: 0.3s;
    z-index: 9;
}

.main-confirmation .confirm-purchase {
    height: 70%;
    width: 60%;
    margin-inline: auto;
    box-shadow: 1px 2px 3px 4px rgba(0, 0, 0, 0.04);
    padding: 5px 15px 15px 15px;
    border-radius: 5px;
    text-align: center;
    background-color: #fff;
}

.confirm-purchase a {
    text-decoration: none;
    font-size: 16px;
}

a.close-verify-confirm {
    display: block;
    text-align: end;
}

a.close-verify-confirm:hover {
    cursor: pointer;
}

.confirm-purchase .btn-trans:hover {
    cursor: pointer;
}

.new-cont.overlay {
    position: relative;
}

.new-cont.overlay::before {
    position: fixed;
    inset: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.credits-popup.show:has(.main-confirmation.show)::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9;
    left: -109%;
    height: 100%;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.7);
}

.view-saved-searches {
    width: 100%;
    border-radius: 5px;
    margin-top: 10px;
    background-color: #3498db !important;
    color: #fff;
}

.popup-modal .modal-content {
    max-width: 90%;
    margin-inline: auto;
    width: 1000px;
    background-color: #001453;
    border: 1px solid #3498db;
    position: relative;
}

.popup-modal .modal-content * {
    color: #fff;
}

.popup-modal .modal-content .close-search {
    display: block;
    text-align: right;
    position: absolute;
    right: 20px;
    top: 10px;
}

.demo-button {
    text-decoration: none;
}

:is(.searchs-grid, .default-grid, .criteria-grid, .lists-grid) ul {
    list-style: none;
    padding-left: 0px;
    width: 100%;
    overflow-x: auto;
    text-align: left;
}

:is(.searchs-grid, .default-grid, .criteria-grid, .lists-grid) ul li.head :is(strong, span) {
    font-weight: 500 !important;
    background-color: #3498db;
    color: #fff !important;
    border-color: #fff !important;
}

:is(.searchs-grid, .default-grid, .criteria-grid, .lists-grid) ul li :is(strong, span) {
    padding: 8px 15px;
    display: inline-block;
    border: 1px solid #c9c4c4;
}

:is(.searchs-grid, .default-grid, .criteria-grid, .lists-grid) ul li {
    display: flex;
    justify-content: space-between;
}

:is(.searchs-grid, .default-grid, .criteria-grid, .lists-grid) ul li :is(strong) {
    width: 30%;
}

.marg-3 {
    margin-top: 15px;
}

:is(.searchs-grid, .default-grid, .criteria-grid, .lists-grid) ul li strong {
    font-weight: normal;
}

:is(.searchs-grid, .default-grid, .criteria-grid, .lists-grid) ul li .created-by {
    width: 25%;
}

:is(.searchs-grid, .default-grid, .criteria-grid, .lists-grid) ul li .upload-by {
    width: 20%;
}

:is(.searchs-grid, .default-grid, .criteria-grid, .lists-grid) ul li .action {
    width: 25%;
}

:is(.searchs-grid, .default-grid, .criteria-grid, .lists-grid) ul li .contacts {
    width: 12%;
}

:is(.search-list) ul li :is(strong) {
    min-width: 20%;
}

:is(.searchs-grid, .default-grid, .criteria-grid, .lists-grid) ul li .action a {
    display: inline-block;
    margin-left: 5px;
}

:is(.searchs-grid, .default-grid, .criteria-grid, .lists-grid) ul li .action a:hover {
    cursor: pointer;
}

a:hover {
    cursor: pointer;
}

:is(.searchs-grid, .default-grid, .criteria-grid, .lists-grid) ul li .action a.delete-item i {
    color: rgb(240, 3, 3) !important;
}

.search-listtop {
    text-align: left;
}

.search-listtop a {
    text-decoration: none;
    display: inline-block !important;
    font-size: 16px !important;
}

.search-listtop input {
    width: 300px !important;
    display: inline-block !important;
    color: #fff !important;
    font-size: 20px !important;
}

.search-listtop input::placeholder {
    color: #fff !important;
}

.delete-from-list i {
    color: #f44336;
    font-size: 20px;
}

/**************Popup Css**************/
/* Popup container */
.popup-message {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #d4edda;
    color: #155724;
    padding: 10px 20px;
    border-left: 4px solid #28a745;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 300px;
    justify-content: space-between;
    align-items: center;
    line-height: 20px;
}

#popup-error,
#popup-delete {
    color: rgba(240, 3, 3, 1);
    background-color: #fff;
    border-left: 4px solid rgba(240, 3, 3, 1);
}

/* Popup icon */
.popup-icon {
    font-size: 20px;
    margin-right: 10px;
}

/* Close button */
.popup-close {
    cursor: pointer;
    margin-left: 20px;
}

/* Smooth transition */
.popup-message.show {
    display: flex;
    animation: fadeIn 0.5s ease;
}

main.content #results-container::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

a.ask {
    position: fixed;
    right: 5px;
    bottom: 5px;
    z-index: 999;
    width: 68px;
    height: 100px;
}

a.ask img {
    width: 100%;
    object-fit: contain;
    height: 100%;
}

a.ask i {
    font-size: 40px;
    margin: 0px;
    color: #3498db;
}

.extras>button.btn-primary,
.extras>a {
    color: #3498db;
    width: 100%;
    margin: 10px 0px 0px 0px;
    border-radius: 5px;
    border: 1px solid #3498db;
    padding: 10px 10px;
    transition: 0.3s;
    background-color: transparent !important;
}

.show .extras>button.btn-primary {
    padding: 10px 20px;
}

.extras>button.btn-primary :hover {
    background-color: #3498db !important;
    color: #fff;
    transition: 0.3s;
}

.clear-criteria {
    color: #D91656;
    width: 100%;
    margin: 10px 0px 0px 0px;
    border-radius: 5px;
    border: 1px solid #D91656;
    padding: 10px 20px;
    transition: 0.3s;
    background-color: transparent !important;
}

.clear-criteria:hover {
    background-color: #f44336 !important;
    color: #fff;
    transition: 0.3s;
}

td.action-buttons {
    min-width: 170px;
}

td.action-buttons img {
    max-width: 80px !important;
    object-fit: contain;
}

/* .save-all-criteria{
    color: #3498db ;
    width: 100%;
    margin: 10px 0px 0px 0px;
    border-radius: 5px;
    border:1px solid #3498db ;
    transition: 0.3s;
    background-color: transparent !important;
}
.save-all-criteria:hover{
    background-color: #3498db !important;
    color: #fff;
} */
.sidebar :is(button, h3, hr) {
    display: none;
}

.sidebar button {
    display: block;
    font-size: 0px;
}

.sidebar .criteria-content button {
    font-size: 16px;
}

.show.sidebar button {
    display: block;
    font-size: 16px;
}

.sidebar button i {
    font-size: 15px;
}

.edit-wrap {
    display: none;
}

.show .edit-wrap {
    display: block;
}

.sidebar .left-wrapper :is(button) {
    display: block;
    font-size: 0px;
}

.sidebar .left-wrapper :is(button) i {
    font-size: 20px;
}

.sidebar.show .left-wrapper :is(button) {
    font-size: 14px;
}

.sidebar.show :is(button, h3, hr) {
    display: block;
}

.sidebar form {
    margin-left: 00px !important;
}

.sidebar {
    width: 50px;
    opacity: 1;
}

.show.sidebar {
    width: 250px;
}

.criteria-content {
    left: 80px;
}

.show .criteria-content {
    left: 270px;
}

.sidebar :is(.ex-label) {
    display: none;
}

.sidebar.show .search-button i {
    padding-right: 5px;
}

.default-popup.credits-popup {
    width: 900px;
}

.f-row {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
}

.f-row .col-d-3 {
    width: calc(33% - 12px);
}

.f-row .plan-card {
    background-color: rgb(229 231 235);
    padding: 15px;
    border-radius: 10px;
}

.f-row .plan-card.gold {
    background-color: rgb(254 249 195);
}

.f-row .plan-card.platinum {
    background-color: rgb(219 234 254);
}

.f-row .plan-card.titanium {
    background-color: rgb(243 232 255);
}

.f-row .plan-card :is(button, a) {
    display: block;
    width: 100%;
    padding: 12px 20px;
    color: #fff;
    background-color: #007bff;
    border: 1px solid #007bff;
    font-size: 16px;
    transition: 0.3s;
    border-radius: 5px;
}

.f-row .plan-card :is(button, a):hover {
    background-color: transparent;
    color: #007bff;
    transition: 0.3s;
}

.f-row .plan-card h2 {
    font-size: 24px;
    color: #000;
    margin-bottom: 5px;
}

.f-row .plan-card strong {
    font-size: 30px;
    display: block;
}

.f-row .plan-card {
    text-align: left;
}

.f-row .plan-card p {
    margin: 0px;
    font-size: 12px;
}

.default-popup ul.credit-ul {
    max-width: 577px;
    margin-inline: auto;
}

.f-row .plan-card ul {
    margin-bottom: 20px;
    list-style: circle;
    padding-left: 15px;
}

.f-row .plan-card ul li {
    font-size: 15px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section.bots-wrapper {
    color: #fff;
    width: 600px;
    margin-inline: auto;
    margin-top: 50px;
    text-align: center;
    max-width: 100%;
}

section.bots-wrapper p {
    font-size: 20px;
}

.home-list {
    list-style: none;
    margin-bottom: 10px;
}

td#last-activity {
    width: 110px;
}

.form-home {
    width: 600px;
    max-width: 100%;
    margin-inline: auto;
    padding: 25px 0px;
    margin-top: 40px;
    text-align: left;
    background-color: #00000017;
    padding: 62px;
    color: #fff;
    backdrop-filter: blur(50px);
    border-radius: 25px;
    box-shadow: 0px 0px 12px 5px #00000029;
}

.form-home * {
    color: #fff;
}

.form-home label {
    display: block;
    font-size: 16px;
}

.form-home :is(textarea, input)::placeholder {
    color: #fff !important;
}

.form-home :is(textarea, input, select) {
    font-size: 14px !important;
    padding: 8px 15px;
    color: #ffff !important;
}

.form-home :is(textarea, input, select):focus {
    color: #fff !important;
}

.form-home :is(textarea, input)::placeholder {
    color: #898989 !important;
}

.form-home :is(select) {
    color: #898989 !important;
}

.form-home :is(textarea) {
    min-height: 120px;
    color: #fff !important;
    width: 100%;
    font-size: 16px;
    border-radius: 5px;
    border-color: #007bff;
    margin-top: 10px;
    box-sizing: border-box;
}

.form-home .form-group {
    margin-bottom: 20px;
}

.form-home .form-group-checkbox label:has(input) {
    display: inline-block;
    margin-right: 20px;
}

.form-home .form-group-checkbox input[type="checkbox"] {
    display: inline-block;
    width: auto !important;
    font-size: 16px;
    margin-top: 0px !important;
}

.form-home button {
    padding: 10px 20px;
    background-color: #0080FF !important;
    font-size: 16px;
    border: 1px solid #0080FF;
    border-radius: 5px;
    transition: 0.3s;
}

.form-home button:hover {
    background-color: transparent !important;
    transition: 0.3s;
}

.form-home :is(textarea, input, select):focus-visible {
    border-color: #0080FF !important;
    outline: #0080FF;
}

#datalistOptions {
    color: #000 !important;
}

#datalistOptions option {
    color: #000 !important;
}

/* #industry-1 {
    display: none;
} */

.industry-options {
    margin-bottom: 10px;
}

#industry-dropdown {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#40FFFFFF', endColorstr='#00FFFFFF', GradientType=0);
    background-color: #fff;
    border-radius: 6px;
    border: solid 1px #eee;
    box-shadow: 0px 2px 5px 0px rgba(155, 155, 155, 0.5);
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    font-size: 14px;
    font-weight: normal;
    line-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: 100%;
}

.dropdown-select.wide {
    position: relative;
}

.dropdown-select.wide .list {
    display: none;
    box-sizing: border-box;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.09);
    background-color: #fff;
    border-radius: 6px;
    margin-top: 4px;
    max-height: 300px;
    padding: 3px 0;
    border: 1px solid #ddd;
    overflow-y: auto;
    padding-inline: 10px;
    margin-bottom: 10px;
}

.dropdown-select.wide .list ul li {
    font-size: 12px;
    line-height: 15px;
}

.dropdown-select.wide .list ul {
    padding-left: 0px;
    padding-top: 10px;
    list-style: none;
}

.dropdown-select.wide.open .list {
    display: block;
}

/* .container.new-cont:has(.home-list .active) :is(#results-container, .top-filterbar) {
    display: none !important;
} */

.extras>button.btn-primary:hover {
    background-color: #0080FF !important;
    color: #fff;
}

.theme-toggle-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0px;
    /* margin: 15px; */
}

.mode-label {
    padding-inline: 0px;
    font-size: 13px;
    margin-bottom: 0px;

}

.theme-label {
    font-size: 16px;
    color: #fff;
}

.main-logo-head {
    width: 200px;
    margin-inline: auto;
    object-fit: contain;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #111;
}

input:checked+.slider:before {
    transform: translateX(26px);
}

/* Light and Dark Mode Styles */
#body.dark-mode {
    background-color: #111;
    color: #eee;
    transition: all 0.5s ease;
}

#body.light-mode {
    background-color: #eee;
    color: #111;
    transition: all 0.5s ease;
}

body.light-mode {
    background-color: #fff !important;
    margin: 0px;
}

body {
    margin: 0px;
}

body.light-mode::before {
    content: unset !important;
}

body.light-mode::after {
    content: unset;
}

body.light-mode .new-cont {
    background-color: #fff;
}

body.light-mode .left-wrapper i {
    color: #fff;
}

body.light-mode li .left-wrapper {
    background-color: #0080FF;
}

body.light-mode li .left-wrapper button {
    color: #fff;
}

body.light-mode .left-wrapper:is(.active, :hover) {
    background-color: #0056b3;
    ;
}

body.light-mode .left-wrapper:is(.has-content) {
    background-color: #0056b3;
}

body.light-mode :is(h1, h2, h3, p, span, strong, label, a) {
    color: #111;
}

body.light-mode .top-infobar p {
    color: #111;
}

body.light-mode .top-infobar :is(#upgrade-btn, .credits) {
    background-color: #26ADE3;
    border-color: #26ADE3;
    color: #fff;
}

body.light-mode .top-infobar :is(#upgrade-btn, .credits):hover {
    background-color: #333;
    border-color: #333;
}

body.light-mode .top-infobar .credits span {
    color: #fff;
}

body.light-mode .form-home {
    background-color: transparent;
}

body.light-mode .form-home :is(input, textarea, select) {
    color: #111 !important;
}

body.light-mode .search-button.btn-primary {
    color: #111 !important;
}

body.light-mode .clear-criteria {
    color: #f44336;

}

body.light-mode .clear-criteria:hover {
    color: #fff;
}

body.light-mode .clear-criteria:hover i {
    color: #fff;
}

body.light-mode .clear-criteria i {
    color: #f44336;
}

body.light-mode :is(td, th, td a) {
    color: #111;
}

body.light-mode #results-container td a {
    color: #111;
}

body.light-mode .new-cont select {
    color: #111;
}

body.light-mode .sidebar-toggle i {
    color: #111;
}

.sidebar-toggle {
    margin-bottom: 5px;
}

#confirmModal button.confirm-btn {
    color: #000;
    background-color: red;
}

body.light-mode .popup-modal .modal-content {
    background-color: #fff;
}

body.light-mode .popup-modal .modal-content * {
    /* background-color: #fff; */
    color: #111;
}

body.light-mode :is(.searchs-grid, .default-grid, .criteria-grid, .lists-grid) ul li.head :is(strong, span) {
    background-color: #89dadd;
}

#results-container button {
    background-color: transparent;
    border: unset;
    color: #fff;
}

#results-container button img, #results-container .export-csv {
    filter: invert(1)brightness(100%);
}

.light-mode #results-container button img, .light-mode #results-container .export-csv {
    filter: unset;
}

.light-mode #results-container button {
    color: #000;
}

#askCoPilotModal .modal-content :is(select, *) {
    color: #fff;
}

button.start-search {
    text-align: end;
    display: block;
    margin-left: auto;
    background-color: #007bff;
    border: 1px solid #007bff;
    color: #fff !important;
    border-radius: 4px;
    padding: 5px 15px;
}

button.start-search:hover {
    transition: 0.3s;
    color: #0080FF !important;
    background-color: transparent !important;
}

#create-list {
    width: 100% !important;
    color: #000 !important;

}

.top-filterbar {
    margin-top: 20px;
}

.top-fil {
    display: none;
}

body:has(#results-container table) .top-fil {
    display: flex;
}

.download-sub button {
    padding: 7px 5px;
    max-width: 127px;
}

.download-sub hr {
    margin: 15px 0px;
}

.download-sub button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    color: #787878;
    border-color: #787878;
}

/* .default-popup, .verify-popup {
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.5);
} */

button.ex-label:hover {
    color: #f6b600 !important;
}

.verify-cont * {
    color: #000;
}

.verify-cont .download-btn {
    color: #fff;
}

.verify-cont .download-btn:hover {
    color: #007bff;
}

#body.light-mode .verify-cont {
    background-color: #eee;
    color: #111;
    transition: all 0.5s ease;
}

#crmModal * {
    color: #000;
}

#crmModal .connect-btn.enabled {
    border: 1px solid #0056b3;
    background-color: #0056b3;
    color: #fff;
    cursor: pointer;
}

#crmModal .connect-btn.enabled:hover {
    background-color: transparent;
    color: #0056b3;
    ;
}

#askCoPilotModal select option {
    color: #000 !important;
}

#response * {
    color: #000 !important;
}

.download-sub h3 {
    font-size: 16px;
    margin: 0px;
    font-weight: 500;
    margin-bottom: 5px;
    padding-left: 3px;
    color: rgba(0, 0, 0, 1) !important;
}

.tut-row {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.tutorials-main {
    text-align: left;
    margin-top: 40px;
}

.tutorials-main {
    display: none;
}

.tutorials-main.show {
    display: block;
}

.btn.close-tutorial {
    padding: 7px 15px;
    background-color: #f44336;
    border-radius: 5px;
    display: inline-block;
    border: 1px solid #f44336;
    transition: 0.3s;
}

.btn.close-tutorial:hover {
    background-color: transparent;
    color: #f44336 !important;
    transition: 0.3s;
}

.tut-row .tut-col-4 {
    width: calc(33% - 10px);
}

.tut-row .tut-col-4 iframe {
    width: 100% !important;
    height: 200px !important;
}

.tut-row .video-wrapper {
    padding: 10px;
    background-color: #001453;
    border: 1px solid #0080FF;
    border-radius: 5px;
}

.tut-row .video-wrapper p {
    margin-bottom: 10px;
    display: block;
}

.video-wrapper * {
    color: #fff !important;
}

span.more-buttons {
    background-color: #007bff;
    padding: 1px;
    border-radius: 5px;
    left: 0;
}

button.toggle-btn {
    text-align: center;
    width: 100%;
    background-color: #E20000 !important;
    border: 1px solid #E20000 !important;
    width: 50px;
    margin-left: 5px;
    margin-top: 5px;
    transition: 0.3s;
    margin-left: 13px;
    position: absolute;
    left: 140px;
    top: 0px
}

button.toggle-btn:hover {
    background-color: transparent !important;
    color: #E20000 !important;
    border: 1px solid #E20000;
    transition: 0.3s;
}

button.unlock-btn {
    min-width: 112px;
    text-align: left;
}

#contacts li {
    list-style: none;
    text-align: left;
    margin-bottom: 10px;
    position: relative;
}

#contacts li button {
    font-size: 13px !important;
    margin-bottom: 5px;
}

.btn-wrap {
    display: inline-flex;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
}
.unlock-text{
    color: #0080ff;
}
a.unlock-c {
    display: none;
    padding: 2px 5px;
    border-radius: 4px;
    border: 1px solid #0080FF !important;
    background-color: #0080FF;
    margin-bottom: 5px;
    transition: 0.3s;
}
.phone-personal .verify-content span{
    display: block;
    width: 100%;
}
.phone-personal .verify-content {
    display: block;
    width: 100%;
    padding-left: 13px;
}
.phone-personal  .btn-wrap{
    margin-bottom: 10px;
}
.phone-personal  .email-status{
    position: absolute;
    right:10px;
    top: 4px;
}
a.unlock-c:hover {
    background-color: transparent;
    transition: 0.3s;
}

.contacts-cell li.active .btn-wrap {
    display: flex;
    max-width: 142px;
}

a.btn-trans.cancel {
    padding: 12px 20px;
    background-color: #E20000;
    color: #fff;
    border: 1px solid #E20000;
}

a.btn-trans.cancel:hover {
    background-color: transparent;
    color: #E20000;
}

.email-popup {
    width: 700px;
}

.email-popup * {
    color: #fff;
}

.email-popup h3 {
    margin: unset;
    text-align: left;
    font-size: 20px;
}

:is(.email-popup, .dripemail-popup) .verify-cont {
    background-color: #001453;
    border: 1px solid #3498db;
}

.mail-form .f-row label {
    width: 130px;
    text-align: left;
}

.mail-form .f-row :is(input, textarea) {
    width: calc(100% - 145px);
    padding: 8px 15px;
    font-size: 15px;
    border: 1px solid #3498db;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #001453;
    color: rgba(255, 255, 255, 0.8);
}

.mail-form .f-row :is(input, textarea):focus-visible {
    border: 1px solid #3498db;
    outline: unset;
    box-shadow: 1px 5px 1px 0px rgba(0, 128, 255, 0.3);
}

.mail-form .f-row :is(input, textarea)::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.mail-form .f-row textarea {
    min-height: 130px;
    height: auto;
    overflow-y: auto;
}

.mail-form .f-row input[type="email"] {
    background-repeat: no-repeat;
    background-position: center left 10px;
    padding-left: 35px;
    background-size: 16px;
    background-image: url('../img/mail.svg');
}

.mail-form .f-row #subject {
    background-repeat: no-repeat;
    background-position: center left 10px;
    padding-left: 35px;
    background-size: 16px;
    background-image: url('../img/list.svg');
}

.submit-row {
    margin-top: 20px;
}

.submit-row .btn-trans {
    padding-inline: 12px !important;
    font-size: 15px;
    background-color: transparent;
}

.submit-row .btn-trans:hover {
    background-color: #007bff;
    color: #fff;
    transition: 0.3s;
}

.submit-row .btn-primary {
    border-radius: 4px;
    padding-top: 11px;
    padding-bottom: 11px;
    font-size: 15px;
    background-repeat: no-repeat;
    background-position: center left 10px;
    padding-left: 35px;
    background-size: 16px;
    background-image: url('../img/send-mail.svg');
}

.trumbowyg-box {
    border: 1px solid #007bff !important;
    text-align: left;
}

.trumbowyg-viewHTML-button svg use {
    color: #000 !important;
}

.trumbowyg-box p {
    margin-top: 0px;
    margin-bottom: 10px;
}

.trumbowyg-editor,
.trumbowyg-textarea {
    min-height: 250px !important;
}

.trumbowyg-editor ul,
.trumbowyg-textarea ul {
    list-style: disc !important;
    padding-left: 20px;
}

#body.light-mode .verify-cont {
    background-color: #eee;
    color: #111;
    transition: all 0.5s ease;
}

#body.light-mode .email-popup * {
    color: #111;
}

#body.light-mode .mail-form .f-row :is(input, textarea) {
    background-color: #eee;
    color: #111;
}


#body.light-mode .submit-row .btn-trans {
    background-color: #007bff;
    color: #fff;
    transition: 0.3s;
}

.dripemail-popup * {
    color: #fff;
}

.dripemail-popup .verify-cont {
    text-align: left;
}

.dripemail-popup h3 {
    font-size: 20px;
    color: #fff;
    margin: 5px 0px;
}

.dripemail-popup input {
    padding: 8px 20px;
    background-color: transparent;
    width: 60%;
    border: 1px solid #d7d7d7;
    border-radius: 5px;
}

.light-mode input {
    border-color: #000;
}

.dripemail-popup input::placeholder {
    color: #fff !important;
}

.light-mode input::placeholder {
    color: #000 !important;
}

.dripemail-popup label {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 500;
}

.add-newmail button {
    width: 100%;
    margin-top: 15px;
    background-color: #0080ff;
    border: 1px solid #0080FF;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}

.campaign-footer {
    text-align: right;
    margin-top: 15px;
}

.campaign-footer a,
.main-drip button {
    display: inline-block;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #0080ff;
    border-radius: 5px;
    color: #fff;
    transition: 0.3s;
    background-color: #0080ff;
}

:is(.campaign-footer a, .main-drip button):hover {
    background-color: transparent;
}

.main-drip button i {
    padding-right: 5px;
}

.main-drip button {
    margin-top: 10px;
}

.main-drip .email-def {
    border: 1px solid #fff;
    padding: 15px;
    position: relative;
    margin: 20px 0px;
    border-radius: 5px;
    box-shadow: 1px 2px 2px 1px rgba(255, 255, 255, 0.25);
}

.light-mode .email-def {
    border-color: #000 !important;
}

.light-mode .email-def i {
    color: #000;
}

.main-drip .email-def :is(input, textarea, select) {
    width: 100%;
    border-radius: 5px;
    padding: 5px 15px;
    box-sizing: border-box;
    margin-bottom: 15px;
    font-size: 14px;
    background-color: transparent;
    border: 1px solid #d7d7d7;
}

.light-mode .main-drip .email-def :is(input, textarea, select) {
    border-color: #000;
    color: #000;
}

.light-mode .main-drip .email-def :is(input, textarea, select)::placeholder {
    color: #000;
}

.close-repemail {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1;
}

.time-email {
    gap: 10px;
    align-items: center;
    display: flex;
}

.time-email label {
    min-width: 80px;
    font-size: 12px;
}

.main-drip .email-def .time-email select {
    width: 35%;
}

.light-mode :is(.campaign-footer a, .main-drip button) {
    color: #000;
}

.light-mode :is(.campaign-footer a, .main-drip button) i {
    color: #000;
}

.main-drip .email-def textarea {
    min-height: 80px;
}

.main-drip .email-def .time-email select option {
    color: #000;
}

.time-email input {
    width: 60%;
}

.close-repemail i {
    color: #E20000;
}

.light-mode .close-repemail i {
    color: #E20000;
}

.main-drip .email-def :is(input, textarea)::placeholder {
    color: #fff;
}

.main-drip .email-def i {
    padding-right: 5px;
}

.main-drip .email-def p {
    margin-top: 0px;
}

.campaign-footer a.trans {
    background-color: #757575;
    border-color: #757575;
}

.campaign-footer a:hover {
    background-color: transparent;
    transition: 0.3s;
}

.add-newmail button i {
    padding-right: 5px;
}

.dripemail-popup input::placeholder {
    color: #000;
}

.sidebar-top img {
    max-width: 100%;
    height: auto;
    width: 48px;
    display: block;
    margin-bottom: 9px;
}

.sidebar-top {
    margin-bottom: 20px;
}

.sidebar:not(.show) h2.mode-label {
    display: none;
}

.sidebar:not(.show) .theme-toggle-container span {
    display: none;
}

.welcome-body .right-image img {
    object-fit: cover;
    border-radius: 50%;
    width: 280px;
    height: 280px;
}

body:has(.welcome-body)::before {
    content: unset !important;
}

body:has(.welcome-body)::after {
    top: 0px;
    height: 100%;
}

input#flexCheckDefault {
    margin: 0px 10px;
}

.welcome-body::before {
    content: unset;
}

.site-logo {
    background: #ffffffe3;
    width: 56px;
    height: 56px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 20px;
}

.site-logo {
    max-width: 100%;
    height: auto;
    width: 48px;
    display: block;
    margin-bottom: 9px;
    padding: 3px;
}

.light-mode .demo-button {
    color: #fff;
}

.light-mode .top-filterbar :is(a, i) {
    color: #fff !important;
}

td#contacts {
    max-width: 100%;
    min-width: 380px;
}

td#contacts .btn-wrap {
    max-width: 80%;
    width: 100%;
}

td#contacts .btn-wrap button {
    flex-wrap: wrap;
    display: inline-block;
}

td#contacts .email-status {
    font-size: 13px;
    color: #007bff;
    display: none;
    width: auto;
}

td#contacts .email-status.show {
    display: inline-block;
   position: absolute;
   right: 0px;
   top:4px;
}
.btn-primary.verify-contact-btn{
    padding: 0px;
    position: absolute;
    right: 3px;
    top: 4px;
}
td#contacts .email-personal .btn-wrap{
width: 100%;
}
td#contacts .email-status.verified {
    color: green;
    background-color: green;
    color: #fff;
    padding: 1px 5px;
    border-radius: 2px;
    line-height: 16px;
}

td#contacts .email-status.not-verified {
    color: #dc3545;
    background-color: #dc3545;
    color: #fff;
    padding: 1px 5px;
    border-radius: 2px;
     line-height: 16px;
}

td#contacts button.toggle-btn {
    left: unset;
    right: 0px;
}
div#api small {
    display: block;
    margin-bottom: 14px;
    margin-top: -7px;
}
div#api small a{
    color: #fff;
}


.light-mode div#api small a{
    color: #000;
}

#autopilotModal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

#autopilotModal .modal-content {
    background: #001453;
    width: 600px;
    border: 1px solid #3498db;
    padding: 20px;
    border-radius: 8px;
    color: #fff !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#autopilotModal .search-details{
    text-align: left;
    border:1px solid #fff;
    padding:15px;
    background-color: #89dadd;
    border-radius: 5px;
}
.dark-mode #autopilotModal .search-details{
    background-color: transparent;
}
#autopilotModal .search-details *{
    color: #fff;
}
#autopilotModal .detail-label{
    font-weight: 700;
}
#autopilotModal .detail-row {
    margin-top: 10px;
}

#autopilotModal .modal-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}
#autopilotModal .status-toggle .switch{
    margin-bottom: 0px;
}
#autopilotModal  .lead-input input{
    border-color: #d7d7d7;
}
.time-wrapper input {
    border: unset;
}

.time-selection{
    margin-top: 20px;
}
.light-mode #autopilotModal label{
    margin-bottom: 15px;
    display: block;
}
.light-mode #autopilotModal i{
    color: #000;
}
.light-mode #autopilotModal .modal-content{
    background-color: #fff;
}
#autopilotModal .modal-header h2 {
    font-size: 20px;
    margin: 0;
}

#autopilotModal .status-toggle {
    display: flex;
    align-items: center;
}

#autopilotModal .status-label {
    margin-right: 10px;
    font-weight: bold;
}

#autopilotModal .switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

#autopilotModal .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

#autopilotModal .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 20px;
    transition: 0.4s;
}

#autopilotModal .slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.4s;
}

#autopilotModal input:checked + .slider {
    background-color: #4caf50;
}

#autopilotModal input:checked + .slider:before {
    transform: translateX(20px);
}

#autopilotModal .search-details,
#autopilotModal .schedule-config,
#autopilotModal .lead-generation {
    margin-top: 20px;
}

#autopilotModal .section-header {
    display: flex;
    align-items: center;
    font-weight: bold;
}

#autopilotModal .section-header i {
    margin-right: 10px;
}

#autopilotModal .days-grid {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

#autopilotModal .day-btn {
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    background: #f8f8f8;
}

#autopilotModal .day-btn.active {
    background: #4caf50;
    color: white;
    border-color: #4caf50;
}

#autopilotModal .time-selection {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

#autopilotModal .time-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    background: #fff;
}

#autopilotModal .lead-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

#autopilotModal .lead-slider {
    flex: 1;
}

#autopilotModal .modal-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    gap: 10px;
}

#autopilotModal .btn-cancel {
    background: #ccc;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
}

#autopilotModal .btn-primary {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
}

#autopilotModal .btn-cancel:hover {
    background: #bbb;
}

#autopilotModal .btn-primary:hover {
    background: #0056b3;
}
.support-section {
    text-align: center;
    margin: 20px 0;
}

.support-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.support-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
}

.support-button svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
/*************loader*****************/
.phone-loader-ui {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  border-radius: 6px;
  background-color:#3498db;
  max-width: 360px;
  color: #ffffff;
  font-size: 12px;
  animation: fadeIn 0.5s ease;
  inset:0;
  margin: auto;
  position:fixed;
  height: 100px;
}
.phone-loader-ui.show{
    display: flex;
}
.loader-ring {
  width: 25px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff; /* Light blue accent */
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loader-message p {
  margin: 0;
  line-height: 1.3;
  color: #fff; /* Soft blue text */
}

.loader-message strong {
  color: #ffffff;
  font-weight: 600;
}
 .light.text-muted{
    color: #fff !important;
    margin-bottom: 0px;
}
.userdashboard-top .form-inline .form-group{
    display: inline-flex;
}
.userdashboard-top .form-control{
    width: auto;
    display: inline-block;
    min-width: 144px;
    padding: 10px 45px 10px 15px;
    color: #000;
}
.userdashboard-top label{
    color: #fff;
    margin-right: 8px;
}
.userdashboard-top .form-group{
    margin-right: 20px;
}
.userdashboard-top .clear-btn{
    background-color: #E20000;
    border: 1px solid #E20000;
}
.userdashboard-top .clear-btn:hover{
    background-color: transparent;
    color: #E20000 !important;
}
.table-ti.margt-40{
    margin-top: 40px;
}
.userdashboard-top select.form-control{
    background-image: url('/static/dist/img/dropdown.svg');
    background-repeat: no-repeat;
    background-position: center right 15px;
}
nav[aria-label="Page navigation"] {
    margin-top: 20px;
}
.pagination .page-link {

    min-width: 30px;
}
.pagination .page-item.active .page-link{
    color: #fff;
    border: unset;
}
.pagination li:is(.active, :hover) a{
    color: #fff;
}
/* Animations */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}
th.name-th{
    max-width: 140px;
}
.user-table td:is(.name-th,.email-th){
    word-break: break-all;
}
.user-search input{
    min-width: 30% !important;
}
.user-search input:focus{
    color:#000 !important;
}
/********************end***********/
@media(min-width:992px) {
    body: has(#askCoPilotModal[style="display: flex;"]) .container.new-cont {
        width: 80%;
    }

    .sidebar:not(.show) .slider:before {
        left: 2px;
    }

    .sidebar:not(.show) input:checked+.slider:before {
        left: -4px;
    }

    /* .container.new-cont:has(.sidebar) main.content {
        margin-top: -105px;
    } */

    .container.new-cont:has(.sidebar) .top-infobar {
        width: calc(100% - 150px);
        margin-left: auto;
    }

    #askCoPilotModal {
        width: calc(20% + 4px);
        left: unset;
        right: 0;
    }

    #askCoPilotModal .output {
        max-height: calc(100vh - 360px);
    }

    #askCoPilotModal .modal-content {
        height: 100vh;
        padding: 0px 20px;
        border: unset !important;
        border-radius: 0px;
    }
}

@media(max-width:991px) {
    body::after {
        width: 110%;
    }

    th.new-contacts {
        min-width: 200px;
    }

    .tut-row .tut-col-4 {
        width: 48%;
    }

    .f-row .col-d-3 {
        margin-top: 20px;
        width: calc(50% - 12px);
    }

    .sidebar .left-wrapper :is(button) {
        font-size: 15px;
    }

    .container.new-cont:has(.sidebar.show) main.content {
        max-width: 100%;
    }

    main.content:has(table) {
        max-width: 100%;
    }

    .show .criteria-content {
        left: unset;
    }

    .show.sidebar {
        width: 100%;
    }

    .email-card {
        flex-basis: calc(50% - 51px);
    }

    .sidebar button {
        font-size: 15px;
    }

    body::before {
        max-width: 100%;
    }

    .new-cont {
        flex-wrap: wrap;
    }

    .sidebar {
        width: 100%;
        transform: translatex(0px);
    }

    .sidebar-toggle {
        display: none;
    }

    main.content {
        flex-grow: unset;
        max-width: calc(100% - 40px);
        width: calc(100% - 40px);
        padding-inline: 20px;
    }

    .criteria-content {
        left: unset;
        right: 0;
        background-color: rgba(0, 0, 0, 0.7);
        height: unset;
        max-width: 200px;
        width: 100%;
        min-height: 100vh;
    }

    #jobTitle:focus-visible {
        outline: unset;
        border: 1px solid #0080FF;
    }

    :is(#results-container, .default-table),
    #status {
        max-width: 100%;
        overflow-x: auto;

    }
}

@media (max-width:600px) {
    :is(.search-grid, .default-grid) ul li :is(strong, span) {
        min-width: 150px;
    }
.userdashboard-top .form-inline .form-group{
    display: block;
}
    .mail-form .f-row label {
        width: 100%;
    }

    .mail-form .f-row :is(input, textarea) {
        width: 100%;
    }

    .form-home {
        width: unset;
    }

    .tut-row .tut-col-4 {
        width: 100%;
    }

    .f-row .col-d-3 {
        margin-top: 20px;
        width: 100%;
    }

    .criteria-content * {
        color: #fff !important;
    }

    body {
        font-size: 16px;
    }

    body::before {
        max-width: 100% !important;
    }

    body::after {
        left: 0 !important;
    }

    .head-nav {
        border-radius: 10px;
        padding: 10px;
    }

    .site-log {
        text-align: center;
        margin-bottom: 20px;
    }

    .bottom-btns .btn-group {
        flex-wrap: wrap;
        row-gap: 10px;
        justify-content: center;
    }

    .btn-group,
    .btn-group-vertical {
        flex-wrap: wrap;
    }

    .d-flex.flex-row {
        flex-wrap: wrap;
    }

    body {
        margin-inline: 0px !important;
    }

    .bots-wrapper {
        margin-top: 30px;
    }

    .head-btn {
        flex-wrap: wrap;
    }

    .table-ti {
        min-width: 100%;
        overflow-x: scroll;
    }

    .bots-wrapper :is(th) {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .bots-wrapper {
        padding: 15px;
    }

    .col-md-6 img {
        max-width: 100%;
    }

    .body.posts form {
        width: 90% !important;
    }

    .mbl-marg {
        margin-top: 20px;
    }

    .titanium form :is(input, select) {
        max-width: 100%;
    }

    .main-head {
        margin-bottom: 30px !important;
    }

    h1 {
        font-size: 30px;
        margin-bottom: 20px !important;
    }

    .just-ce {
        justify-content: center;
    }

    .titanium form {
        width: 100%;
        justify-content: center;
    }

    #save-btns-container {
        justify-content: center;
    }

    .mt-5 {
        margin-top: 10px !important;
    }

    .btn-group.w-50 {
        width: 100% !important;
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .row.my-3 {
        justify-content: center;
        padding: 0px !important;
    }

    .text.m-5 {
        margin: 0px !important;
    }

    .m-3 {
        margin-inline: 0px !important;
    }

    .titanium form :is(.text-left, .text-right, .text-end) {
        text-align: center !important;
    }

    .titanium form label:is(.text-left, .text-right, .text-end) {
        text-align: left !important;
    }

    .titanium form {
        padding: 0px;
    }

    .titanium label {
        display: block;
    }

    body::after {
        max-width: 100%;
    }

    .email-card {
        flex-basis: 100% !important;
    }

    a.close-verify {
        top: 10px;
        right: 40px;
    }
}

/* Modal styling */
#askCoPilotModal .modal-content {
    max-width: 90%;
    margin-inline: auto;
    width: 1000px;
    background-color: #2d50c4;
    border: 1px solid #3498db;
    position: relative;
    overflow-y: auto;
}


#askCoPilotModal .close-search {
    display: block;
    text-align: right;
    position: absolute;
    right: 20px;
    top: 10px;
}

/* Modal header */
#askCoPilotModal h2 {
    font-size: 24px !important;
    color: #fff;
    text-align: center !important;
}

/* Textarea styling */
#askCoPilotModal textarea {
    width: 100% !important;
    height: 100px !important;
    padding: 10px !important;
    color: #000 !important;
    background-color: #fff !important;
    border: 1px solid #ccc !important;
    border-radius: 5px !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    margin: 10px 0 !important;
    box-sizing: border-box !important;
    font-family: var(--ubuntu);
}

#askCoPilotModal textarea:focus-visible {
    outline: #007bff !important;
}

#askCoPilotModal label {
    color: #f8f9fa;
    text-align: left !important;
}

#askCoPilotModal .output {
    margin-top: 20px !important;
    padding: 15px !important;
    background-color: #f8f9fa !important;
    border: 1px solid #ddd !important;
    border-radius: 5px !important;
    color: #000 !important;
    font-size: 15px;
    min-height: 400px;
    max-height: 500px;
    overflow-y: auto;
    scrollbar-width: thin;
}

/* Submit Button */
#askCoPilotModal .btn-primary {
    display: block !important;
    width: 100% !important;
    padding: 10px !important;
    background-color: #007bff !important;
    color: white !important;
    border: none !important;
    border-radius: 5px !important;
    cursor: pointer;
    margin-top: 10px !important;
    font-weight: bold !important;
    max-width: 150px;
    margin-inline: auto;
    transition: 0.3s;
}

#askCoPilotModal .btn-primary:hover {
    background-color: #0056b3 !important;
    outline: 1px solid #fff !important;
    transition: 0.3s;
}

#askCoPilotModal .fa.fa-close {
    color: #fff;
}

/* AI Response Header */
#askCoPilotModal .output h3 {
    color: #000 !important;
    margin-bottom: 10px !important;
    font-size: 18px !important;
}

#askCoPilotModal .output * {
    text-align: left !important;
    margin-bottom: 8px;
}

#askCoPilotModal .output :is(ul, ol) {
    padding-left: 15px;
}

#askCoPilotModal {
    z-index: 9999;
}

a.disabled,
button.disabled {
    cursor: not-allowed;
    background-color: #ccc;
}

.divider {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 15px 0;
}

.divider-line {
    flex-grow: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

.divider-text {
    color: rgba(255, 255, 255, 0.7);
    padding: 0 10px;
    font-size: 14px;
    text-transform: uppercase;
}

/* Small dot spinner animation */
.dot-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.unlock-spinner.hidden {
    display: none;
}


.unlock-spinner {
    display: inline-block;
}

div.content button {
    padding: 10px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}


div.content button:hover {
    background-color: #2980b9;
}

.message {
    color: white;
}

.hide {
    display: none;
}

:disabled {
    background-color: #99a6b2;
    border-color: #99a6b2;
    cursor: not-allowed;
    transition: 0.3s;
}

.modal-actions .btn-cancel {
    background: #6c757d;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.modal-actions .btn-delete {
    background: #dc3545;
    color: #fff;
    border: none;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}


.unlock-btn.email-preview-btn {
    display: flex;
    justify-content: space-between;
    /* This spreads out the elements */
    width: auto;
    /* Take full width */
    align-items: center;
    gap: 8px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
}
#contacts li{
    max-width: 400px;
}
.unlock-btn.email-preview-btn .masked {
    text-align: left !important;
}

.unlock-btn.email-preview-btn .unlock-text {
    color: #0080ff;
    font-weight: 500;
    text-align: right !important;
}

.unlock-btn.email-preview-btn:hover {
    background: #e8e8e8;
}


.schedule-section {
    margin-bottom: 10px;
}

.schedule-input {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background: #241fbb;
    color: white;
}


#body.light-mode .schedule-input {
    background: whitesmoke;
    color: #000;
}


.slider-container {
    width: 320px;
    padding: 16px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.title {
    font-weight: 500;
    color: #4a4a4a;
}

.done-button {
    background-color: #38b2ac;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 14px;
    cursor: pointer;
}

.range-title {
    color: #666;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 14px;
}

.slider-track-container {
    position: relative;
    padding: 30px 0 24px 0;  /* Added more padding on top */
    user-select: none;
}

.slider-track {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 4px;
    background-color: #e2e8f0;
    border-radius: 4px;
    transform: translateY(-50%);
}

.slider-track-active {
    position: absolute;
    top: 50%;
    height: 4px;
    background-color: #007bff;
    border-radius: 4px;
    transform: translateY(-50%);
}

.slider-handle {
    position: absolute;
    top: 50%;
    width: 24px;
    height: 24px;
    background-color: white;
    border: 2px solid #007bff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.tick-container {
    position: relative;
    margin-top: -38px;  /* Increased negative margin to move up */
    width: 100%;
    height: 38px;      /* Increased height for more space */
}

.tick {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    font-size: 12px;
    color: #718096;
}


.seniority-options {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 8px;
    margin-top: 8px;
}

.seniority-options .checkbox-wrapper {
    margin-bottom: 8px;
}

.seniority-options .checkbox-wrapper:last-child {
    margin-bottom: 0;
}

button.btn-secondary.set-default {
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
    visibility: visible;
}