.calendar-nav {
    background-color: #f4f5f7;
    padding: 5px;
}

.calendar-grid {
    overflow-x: auto;
}

.table th,
.table td {
    text-align: center;
    vertical-align: middle;
}

.sticky-header {
    position: sticky;
    top: 0;
    background-color: #f4f4f4;
    z-index: 1;
}

.cell {
    text-align: center;
    padding: 5px;
}

.percentage {
    font-size: 10px !important;
}

.table thead th {
    text-align: center !important;
}

.bg-black {
    background: #000 !important;
    color: #fff !important;
}

.strategy-card {
    width: 100%;
    background-color: white;
    border-radius: 8px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    padding: 15px;
}

.strategy-card .header {
    font-size: 16px;
    font-weight: bold;
    color: #ff9800;
}

.strategy-card .audience-size {
    margin-top: 5px;
    color: #6d6d6d;
    font-size: 13px;
}

.strategy-card .toggle-buttons {
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;
}

.strategy-card .toggle-buttons button {
    background-color: #e6e6e6;
    padding: 8px 16px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 13px;
    font-weight: bolder;
}

.strategy-card .active {
    color: white;
}

.strategy-card .estimated-results {
    margin-top: 20px;
}

.strategy-card .estimated-results p {
    font-size: 14px;
    color: #333;
}

.strategy-card .deliverability {
    margin-top: 10px;
}

.deliverability .bar {
    width: 100%;
    height: 8px;
    background-color: #f0f0f0;
    border-radius: 5px;
    margin-bottom: 10px;
}

.deliverability .bar span {
    display: block;
    width: 60%;
    height: 100%;
    background-color: #3e9eff;
    border-radius: 5px;
}

.recommendation {
    margin-top: 15px;
    background-color: #eef5fe;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
}

.accordion-button:not(.collapsed) .icon-toggle {
    transform: rotate(45deg); /* Rotate icon on open */
}

.icon-toggle {
    transition: transform 0.3s ease; /* Smooth transition for rotation */
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="red"%3e%3cpath d="M8 1.5A6.5 6.5 0 1 0 8 14.5A6.5 6.5 0 0 0 8 1.5zm0 1A5.5 5.5 0 1 1 8 13.5A5.5 5.5 0 0 1 8 2.5zM8 5a.75.75 0 0 1 .75.75v3.5a.75.75 0 1 1-1.5 0v-3.5A.75.75 0 0 1 8 5zm0 6a.75.75 0 1 1 0 1.5A.75.75 0 0 1 8 11z"%3e%3c/path%3e%3c/svg%3e');
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem 1rem;
    position: relative;
}

/* Tooltip positioning */
.tooltip-inner {
    font-size: 12px;
    text-align: left;
}

.input-group-text {
    background-color: #f8f9fa; /* Light gray background */
    font-weight: bold;
}

.dataTables_length,
.dataTables_filter,
.dataTables_info,
.dataTables_paginate {
    font-size: 13px;
}

.dataTables_length {
    margin-bottom: 13px;
}

table.dataTable.table-striped > tbody > tr.odd > * {
    box-shadow: inset 0 0 0 9999px rgb(127 126 126 / 5%);
}
.table.table-striped > tbody > tr:nth-of-type(odd) > * {
    background: #ffffff;
}

.table.table-bordered {
    border: 0.5px solid #dee2e6;
}

table.dataTable.no-footer {
    border: 0.5px solid #dee2e6;
}

table.dataTable thead > tr > th.sorting,
table.dataTable thead > tr > th.sorting_asc,
table.dataTable thead > tr > th.sorting_desc,
table.dataTable thead > tr > th.sorting_asc_disabled,
table.dataTable thead > tr > th.sorting_desc_disabled,
table.dataTable thead > tr > td.sorting,
table.dataTable thead > tr > td.sorting_asc,
table.dataTable thead > tr > td.sorting_desc,
table.dataTable thead > tr > td.sorting_asc_disabled,
table.dataTable thead > tr > td.sorting_desc_disabled {
}

.table-bordered > :not(caption) > * > * {
    border-width: 0.5px;
}

.navbar
    .navbar-menu-wrapper
    .navbar-nav
    .nav-item.dropdown
    .navbar-dropdown
    .dropdown-item {
    border-bottom: none;
}

.content-wrapper {
    padding: 15px;
}

@media (min-width: 992px) {
    .sidebar-icon-only .sidebar .nav .nav-item .nav-link i.menu-icon {
        color: #000 !important;
        font-size: 19px !important;
    }
}

.flawk-orange {
    color: #ff9e40;
}

/* .sidebar .nav .nav-item.active > .nav-link {
    background-color: #ff9e40 !important;
    color: #fff !important;
    border-radius: 20px;
}

.sidebar-icon-only .sidebar .nav:not(.sub-menu) .nav-item.active {
    background-color: #ff9e40;
    color: #fff;
    border-radius: 20px;
} */

.nav-tabs .nav-item:first-child .nav-link {
    border-radius: 15px 0 0 0;
}

.nav-tabs .nav-item:last-child .nav-link {
    border-radius: 0 15px 0 0;
}

.popAnimation {
    transition: transform 0.3s ease-in-out; /* Smooth transition for hover effect */
}

.popAnimation:hover {
    animation: pop 0.3s ease-in-out; /* Trigger animation on hover */
}

@keyframes pop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1); /* Slightly larger scale */
    }
    100% {
        transform: scale(1);
    }
}

.welcome-text {
    font-size: 18px;
    color: #000;
    margin-left: 20px;
}

.sidebar-icon-only .sidebar .nav .nav-item.active > .nav-link {
    background: linear-gradient(45deg, #ffe082, #ff9800) !important;
    color: #fff !important;
}

.sidebar-icon-only .sidebar .nav:not(.sub-menu) .nav-item.active {
    background: linear-gradient(45deg, #ffe082, #ff9800);
    color: #fff;
    border-radius: 20px;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
    border: 1px solid #dee2e6 !important;
}

.select2-container .select2-selection--multiple,
.select2-container--default .select2-selection--single {
    min-height: 45px !important;
    padding-top: 5px;
}

.select2-selection__placeholder {
    color: #c9c8c8 !important;
}

.select2-container--default
    .select2-selection--multiple
    .select2-selection__choice,
.select2-container--default .select2-selection--single {
    padding: 7px;
}

.select2-selection__choice {
    padding: 6px !important;
}

.home-tab .dropdown .btn {
    color: #000 !important;
    background-color: #f4f5f7;
    border: 1px solid #cbddff;
    font-size: 12px !important;
    height: 31px;
    padding: 5px;
}

.card {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
}

.tv-monitor .business-card .card {
    padding: 0px !important;
}

.form-label {
    font-weight: bold;
}

.form-check-input {
    margin-right: 5px;
}

/* .btn-primary {
    font-size: 18px;
    padding: 10px;
    margin-top: 15px;
} */

.form-check .form-check-input {
    margin-left: 0px;
}

.accordion-button {
    font-weight: bold;
}

.accordion-body {
    border-radius: 8px;
    padding: 15px;
}

.option-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 0px;
}

.form-check .form-check-label {
    font-weight: 600;
}

.btn-outline-primary,
.btn-outline-secondary {
    border-radius: 20px;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.btn-primary,
.btn-secondary {
    color: white;
    font-weight: bold;
    border: none;
}
.btn-primary {
    background-color: #000;
}

.btn-secondary {
    background-color: #ff9e40 !important;
    color: #fff !important;
}
.btn-success {
    background-color: #000000 !important;
    color: #fff !important;
}

.accordion-button {
    background-color: #f9f9f9 !important;
    padding: 20px;
}

#available-units,
#selected-units {
    border: 1px solid #ccccd2;
    height: 300px;
    overflow-y: auto;
    max-height: 400px;
}

.unit-item {
    border-radius: 0px !important;
    padding: 12px !important;
}

.unit-item:hover {
    background-color: #f9f9f9 !important;
}

hr {
    color: #b5b0b0;
}

/* Basic styling for dropdown and buttons */
.dropdown {
    position: relative;
}

.dropdown input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
}

.dropdown ul {
    position: absolute;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: none;
}

.dropdown ul li {
    padding: 8px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}

.dropdown ul li:hover {
    background-color: #f0f0f0;
}

.action-buttons {
    display: flex;
    justify-content: space-between;
}

.action-buttons button {
    padding: 5px 10px;
    border: none;
    cursor: pointer;
}

.action-buttons .add-btn {
    background-color: #28a745;
    color: white;
}

.action-buttons .exclude-btn {
    background-color: #dc3545;
    color: white;
}

.added-excluded {
    margin-top: 20px;
}

.added-excluded ul {
    list-style-type: none;
    padding: 0;
}

.added-excluded li {
    display: flex;
    justify-content: space-between;
    padding: 5px;
    margin: 5px 0;
    border-bottom: 1px solid #ddd;
}

.added-excluded .add {
    color: green;
}

.added-excluded .exclude {
    color: red;
}

.location-item {
    font-size: 14px;
    margin-bottom: 9px;
    display: flex;
    justify-content: space-between;
}

.time-slot {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    margin-bottom: 10px;
}

.day-checkbox {
    display: flex;
    align-items: center;
}

.time-dropdowns {
    display: flex;
    justify-content: space-between;
    width: 60%;
}

.time-slot button {
    background-color: #4c9aff;
    border: none;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
}

.reset-button {
    background-color: #ff5b5b;
}

.info-text {
    font-size: 12px;
    color: #555;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.day-label {
    font-weight: bold;
    text-align: center;
}

.time-options {
    margin-bottom: 15px;
}

.time-option {
    margin-right: 15px;
    cursor: pointer;
}

.selected-time-option {
    font-weight: bold;
    text-decoration: underline;
}

.added-excluded {
    margin-top: 20px;
}

.added-excluded .location-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.trash-icon {
    cursor: pointer;
    color: red;
    margin-left: 10px;
}

.delete-text {
    cursor: pointer;
    color: red;
    margin-left: 10px;
    font-weight: bold;
}

.col-lg-3 {
    position: relative; /* Add position relative to the parent */
    height: 100%; /* Ensure the parent has a height */
}

/* Make sure the sticky card isn't overridden by any parent container's overflow */
.card {
    overflow: visible; /* Make sure this container doesn’t hide the sticky */
}

.list-group-item {
    background-color: transparent !important;
    border: 0px;
}

.form-check-input:checked {
    background-color: #e29e09;
    border-color: #e29e09;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 20px;
    background: #ddd;
    border-radius: 50px;
    overflow: hidden;
    margin-top: 9px;
}

/* ✅ Fixed Progress Fill */
.progress-fill {
    position: absolute;
    height: 100%;
    width: 50%; /* Initial fill */
    background: linear-gradient(90deg, #28a745, #007bff);
    border-radius: 50px;
    transition: width 0.1s;
}

/* ✅ Hide default track */
.custom-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    outline: none;
    z-index: 3;
    cursor: pointer;
}

/* ✅ Hide track on WebKit Browsers */
.custom-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 10px;
    background: transparent; /* Fixes white patch */
    border-radius: 50px;
}

/* ✅ Hide track on Mozilla */
.custom-slider::-moz-range-track {
    width: 100%;
    height: 10px;
    background: transparent; /* Fixes white patch */
    border-radius: 50px;
}

/* ✅ Custom Thumb */
.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #007bff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
    transition: 0.2s;
    z-index: 4;
    position: relative;
}

.custom-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #007bff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
    transition: 0.2s;
    z-index: 4;
    position: relative;
}

.card {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
}

.form-label {
    font-weight: bold;
}

.form-check-input {
    margin-right: 5px;
}

.form-check .form-check-input {
    margin-left: 0px;
}

.accordion-button {
    font-weight: bold;
}

.accordion-body {
    border-radius: 8px;
    padding: 15px;
}

.option-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 0px;
}

.form-check .form-check-label {
    font-weight: 600;
}

.btn-outline-primary,
.btn-outline-secondary {
    border-radius: 20px;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.accordion-button {
    background-color: #f9f9f9 !important;
    padding: 20px;
}

hr {
    color: #b5b0b0;
}

/* Basic styling for dropdown and buttons */
.dropdown {
    position: relative;
}

.dropdown input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
}

.dropdown ul {
    position: absolute;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: none;
}

.dropdown ul li {
    padding: 8px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}

.dropdown ul li:hover {
    background-color: #f0f0f0;
}

.action-buttons {
    display: flex;
    justify-content: space-between;
}

.action-buttons button {
    padding: 5px 10px;
    border: none;
    cursor: pointer;
}

.action-buttons .add-btn {
    background-color: #28a745;
    color: white;
}

.action-buttons .exclude-btn {
    background-color: #dc3545;
    color: white;
}

.added-excluded {
    margin-top: 20px;
}

.added-excluded ul {
    list-style-type: none;
    padding: 0;
}

.added-excluded li {
    display: flex;
    justify-content: space-between;
    padding: 5px;
    margin: 5px 0;
    border-bottom: 1px solid #ddd;
}

.added-excluded .add {
    color: green;
}

.added-excluded .exclude {
    color: red;
}

.location-item {
    font-size: 14px;
    margin-bottom: 9px;
    display: flex;
    justify-content: space-between;
}

.time-slot {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    margin-bottom: 10px;
}

.day-checkbox {
    display: flex;
    align-items: center;
}

.time-dropdowns {
    display: flex;
    justify-content: space-between;
    width: 60%;
}

.time-slot button {
    background-color: #4c9aff;
    border: none;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
}

.reset-button {
    background-color: #ff5b5b;
}

.info-text {
    font-size: 12px;
    color: #555;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.day-label {
    font-weight: bold;
    text-align: center;
}

.time-options {
    margin-bottom: 15px;
}

.time-option {
    margin-right: 15px;
    cursor: pointer;
}

.selected-time-option {
    font-weight: bold;
    text-decoration: underline;
}

.added-excluded {
    margin-top: 20px;
}

.added-excluded .location-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.trash-icon {
    cursor: pointer;
    color: red;
    margin-left: 10px;
}

.delete-text {
    cursor: pointer;
    color: red;
    margin-left: 10px;
    font-weight: bold;
}

.col-lg-3 {
    position: relative; /* Add position relative to the parent */
    height: 100%; /* Ensure the parent has a height */
}

/* Make sure the sticky card isn't overridden by any parent container's overflow */
.card {
    overflow: visible; /* Make sure this container doesn’t hide the sticky */
}

.list-group-item {
    background-color: transparent !important;
    border: 0px;
}

.form-check-input:checked {
    background-color: #e29e09;
    border-color: #e29e09;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 20px;
    background: #ddd;
    border-radius: 50px;
    overflow: hidden;
    margin-top: 9px;
}

/* ✅ Fixed Progress Fill */
.progress-fill {
    position: absolute;
    height: 100%;
    width: 50%; /* Initial fill */
    background: linear-gradient(90deg, #28a745, #007bff);
    border-radius: 50px;
    transition: width 0.1s;
}

/* ✅ Hide default track */
.custom-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    outline: none;
    z-index: 3;
    cursor: pointer;
}

/* ✅ Hide track on WebKit Browsers */
.custom-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 10px;
    background: transparent; /* Fixes white patch */
    border-radius: 50px;
}

/* ✅ Hide track on Mozilla */
.custom-slider::-moz-range-track {
    width: 100%;
    height: 10px;
    background: transparent; /* Fixes white patch */
    border-radius: 50px;
}

/* ✅ Custom Thumb */
.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #007bff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
    transition: 0.2s;
    z-index: 4;
    position: relative;
}

.custom-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #007bff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
    transition: 0.2s;
    z-index: 4;
    position: relative;
}

#total-value {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-top: -80px;
    color: #333;
}

#label-wrapper {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-top: 20px;
}

#label-wrapper .label-item {
    display: flex;
    align-items: center;
}

#label-wrapper .label-item i {
    margin-right: 5px;
}

.card .card-body {
    padding: 18px;
}

.campaign-row {
    font-size: 22px !important;
    color: #2d2b2b !important;
    text-align: start;
}

/* Asset Grid Layout */
#assetGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    padding: 10px;
}

/* Individual Asset */
.asset-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.asset-item:hover {
    transform: scale(1.02);
    /* Slight zoom on hover */
}

.bg-opacity{
     background-color: #ffffff9e !important;
}

#unitSelect{
    max-width:30% !important;
}

.card-pop:hover{
    transform: scale(1.02);
}

/* Badge for adType in the top-right corner */
.ad-type-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgb(255 193 72);
    color: black;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 1;
}

/* Media Container */
.media-container {
    position: relative;
    height: 200px;
}

/* Expand Button */
.expand-btn {
    position: absolute;
    bottom: 10px;
    right: 10%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
}

/* Analytics Details */
.analytics-details {
    display: none;
    padding: 10px;
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
}

/* Expand the analytics on click */
.analytics-details.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

/* Fade-in animation for expanding analytics */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Slide-in effect for analytics container */
@keyframes slideInAnalytics {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Analytics Container on the Right */
.analytics-container {
    flex: 1;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: rgb(0 0 0 / 10%) 0px 3px 10px 0px;
    max-width: 300px;
    /* Limit the width of analytics */
    opacity: 0;
    animation: slideInAnalytics 0.5s ease-out forwards;
}

hr {
    color: #bfbfbf;
}

.btn-category {
    font-size: 12px;
    background-color: #ff9f40;
    color: #fff;
    padding: 6px;
    padding-left: 15px;
    padding-right: 15px;
    border: 1px solid #fff;
    border-radius: 10px;
    font-weight: bold;
}

.btn-category.active {
    background-color: #000 !important;
}

@media screen and (max-width:768px) {
    .btn-category{
        width: 100%;
    }
    .tabbed-buttons{
        flex-direction: row;
        flex-wrap: wrap;
    }
    .home-tab .btn-wrapper .btn i{
        display: none;
    }

}
.captivation-block{
    padding-top: 25%;
}

@media screen and (max-width:768px){
   .captivation-block{
    padding-top: 0px;
}

}

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 9999;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.5);
    /* Black with opacity */
    animation: fadeIn 0.3s ease-in-out;
}

/* Modal content */
.modal-content {
    background-color: #fff;
    margin: 2% auto;
    /* padding: 20px; */
    border: 1px solid #888;
    width: 90%;
    border-radius: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.5s ease-out;
}

/* The close button */
.close-btn {
    color: #000;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 0px;
    right: 25px;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Fade-in animation for the modal */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Slide-in animation for the modal content */
@keyframes slideIn {
    from {
        transform: translateY(-30%);
    }

    to {
        transform: translateY(0);
    }
}

/* Optional: CSS for the canvas size */
canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-icon {
    font-size: 18px;
    margin-left: 5px;
    cursor: pointer;
    color: #007bff;
}

.info-icon:hover {
    color: #0056b3;
}

.tooltip-inner {
    background-color: #2d2b2b;
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
    padding: 5px;
}

.tooltip-arrow {
    border-top-color: #2d2b2b;
}

.tooltip-inner {
    background-color: #333 !important;
    /* Dark background */
    color: white !important;
    /* White text */
    font-size: 14px !important;
    /* Font size */
    border-radius: 5px;
    /* Rounded corners */
    padding: 10px;
    /* Padding around the text */
}

/* Custom Tooltip Arrow */
.tooltip.bs-tooltip-top .arrow::before {
    border-top-color: #333;
    /* Change arrow color */
}

.info-icon {
    font-size: 15px !important;
    color: #505050 !important;
}

.captivation-container {
    width: 300px;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h3 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 18px;
}

.captivation-description {
    margin-bottom: 20px;
}

.captivation-description div {
    font-size: 14px;
    color: #555;
}

.captivation-bars {
    display: flex;
    border-radius: 3px;
    overflow: hidden;
}

.captivation-bar {
    height: 100%;
    border-radius: 10px;
}

.btn-filter {
    background-color: #ff9f40 !important;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 10px;
    font-weight: bold;
    padding: 7px !important;
    font-size: 11px;
    margin: 2px !important;
    border: 1px solid rgb(255, 255, 255) !important;
}

.btn-filter.active {
    background-color: rgb(12, 12, 12) !important;
    color: #fff !important;
}

.home-tab .statistics-details .rate-percentage {
    text-align: start !important;
}

.btn-popup {
    background-color: #ff9f40;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 10px;
    font-weight: bold;
    padding: 12px !important;
    font-size: 13px;
    margin: 2px !important;
    border: 1px solid rgb(255, 255, 255) !important;
}

@media screen and (max-width:768px) {
    .btn-popup {
        width: 100%;
    }
}

.btn-popup.active {
    background-color: rgb(12, 12, 12) !important;
    color: #fff !important;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Apply the blink animation */
.blink {
    animation: blink 1s infinite;
    /* 1s is the duration of one blink cycle, infinite means it will repeat forever */
}

.tv-actions {
    font-size: 13px;
    padding: 13px;
    border: 0.4px solid #d5d0d0;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    margin: 2px !important;
}

.tv-actions:hover {
    background-color: #000;
    color: #fff;
}

.tv-labels {
    font-size: 13px;
    color: #b9b4b4;
}

.tv-label-value {
    font-size: 20px;
    color: #5a5a5a;
}

.ctv-card {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 0px !important;
}

.ctv-card-header {
    background-color: #f8f9fa;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 15px;
}

.ctv-card-title {
    font-size: 16px;
    font-weight: 600;
}

.ctv-card-subtitle {
    font-size: 13px;
    color: #6c757d;
}

.ctv-card-text {
    font-size: 13px;
}

#screenTable tbody td {
    padding: 15px 10px;
    vertical-align: middle;
}

#screenTable tbody tr:hover {
    background-color: #f9f9f9;
}

.text-popup-input {
    font-size: 13px;
}

.key-textarea {
    height: 180px !important;
    line-height: 25px;
}

#durationMinutesLabel {
    font-size: 12px;
}

.large-progress {
    height: 17px !important;
}
.text-left {
    text-align: left !important;
}
#switching-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: block;
}

.switching-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}

.switching-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    min-width: 250px;
}

.switching-text {
    color: #333;
    margin: 0;
    font-weight: 600;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}
.account_type {
    color: #000;
    font-weight: bold;
}

.form-label {
    font-size: 14px;
}
.slider-container {
    position: relative;
    width: 100%;
    height: 20px;
    background: #ddd;
    border-radius: 50px;
    overflow: hidden;
    margin-top: 9px;
}

/* ✅ Fixed Progress Fill */
.progress-fill {
    position: absolute;
    height: 100%;
    width: 50%; /* Initial fill */
    background: linear-gradient(90deg, #28a745, #007bff);
    border-radius: 50px;
    transition: width 0.1s;
}

/* ✅ Hide default track */
.custom-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    outline: none;
    z-index: 3;
    cursor: pointer;
}

/* ✅ Hide track on WebKit Browsers */
.custom-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 10px;
    background: transparent; /* Fixes white patch */
    border-radius: 50px;
}

/* ✅ Hide track on Mozilla */
.custom-slider::-moz-range-track {
    width: 100%;
    height: 10px;
    background: transparent; /* Fixes white patch */
    border-radius: 50px;
}

/* ✅ Custom Thumb */
.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #007bff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
    transition: 0.2s;
    z-index: 4;
    position: relative;
}

.custom-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #007bff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
    transition: 0.2s;
    z-index: 4;
    position: relative;
}

.user-msg {
    justify-content: end !important;
}
.flawk-btn {
    background: linear-gradient(45deg, #ffe082, #ff9800);
    border: none;
    color: #111;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.flawk-btn:hover {
    background: linear-gradient(45deg, #ffd54f, #ff6f00);
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.4);
}

/* Blinking icon */
.flawk-btn .mdi {
    animation: blinkIcon 1.2s ease-in-out infinite;
}

.blinkIcon {
    animation: blinkIcon 1.2s ease-in-out infinite;
}

@keyframes blinkIcon {
    0%,
    100% {
        opacity: 1;
        transform: scale(1.15);
    }
    50% {
        opacity: 0.4;
        transform: scale(1);
    }
}

.icleanse-btn {
    background: linear-gradient(45deg, #09cef5, #834bf0);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.icleanse-btn:hover {
    background: linear-gradient(45deg, #09cef5, #834bf0);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.4);
}
.logo-icleanse {
    width: 150px !important;
}

.chats {
    text-transform: capitalize;
}

#chatLog .user {
    background: #e7f1ff;
  }

  #chatLog .assistant {
    background: #f8f9fa;
  }

  .bubble {
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 10px;
    padding: 7px;
  }
  .chat-shell {
    height: calc(100vh - 100px);
    overflow: hidden;
  }

  .chat-pane {
    min-height: 0;
  }

  .bg-light {
    font-size: 13px;
  }

  #chatLog {
    height: 250px;
    overflow: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  /* make all controls same height */
  .composer .input-group-text,
  .composer .form-control,
  .composer .form-select {
    height: 42px;
  }

  .composer .input-group.input-group-sm {
    height: 42px;
  }

  /* prevent tiny selects */
  .composer .min-140 {
    min-width: 140px;
  }

  .tile-btn {
    height: 43px;
    border: 1px solid #dee2e6;
    padding: 11px;
  }

  .tile-display {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .select-pill {
    display: inline-block;
    padding: 5px 6px;
    border-radius: 4px;
    background: #000;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
  }

  .btn-primary:hover {
    background-color: orange !important;
  }

  /* .bubble {
    opacity: 0;
    transform: translateY(6px) scale(.98);
  } */

  .bubble.pop-in {
    animation: bubblePop .24s ease-out forwards;
    max-width:80%;
  }

  .list-group-item{
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    font-size: 13px;
  }

  @keyframes bubblePop {
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  /* respect accessibility settings */
  @media (prefers-reduced-motion: reduce) {
    .bubble {
      opacity: 1;
      transform: none;
      animation: none !important;
    }
  }

  .status-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 10px 14px;
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
  }

  .orb {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    animation: floatY 2.6s ease-in-out infinite alternate;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25),
      0 8px 18px rgba(0, 0, 0, .2);
  }

  /* Gradient surface (richer colors) */
  .orb::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 25% 25%,
        #fff4d4 0%,
        /* soft cream for glow */
        #ffe082 25%,
        /* warm gold to match logo */
        #ff9800 50%,
        /* deep orange accent */
        #ff6f61 75%,
        /* coral highlight for contrast */
        #ffd54f 100%
        /* bright yellow edge */
      );
    animation: shiftGradient 6s ease-in-out infinite;
  }

  /* Moving glassy shadow overlay */
  .orb::after {
    content: "";
    position: absolute;
    inset: -25%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
    mix-blend-mode: screen;
    animation: rotateShadow 8s linear infinite;
  }

  /* Sparkles */
  .orb .sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
    opacity: .8;
    filter: blur(.2px);
    animation: blink 1.8s ease-in-out infinite;
  }

  .orb .s1 {
    top: 22%;
    left: 38%;
    animation-delay: .0s
  }

  .orb .s2 {
    top: 48%;
    left: 52%;
    animation-delay: .5s
  }

  .orb .s3 {
    top: 66%;
    left: 42%;
    animation-delay: 1.1s
  }

  /* Logo center */
  .orb .logo {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(.76);
  }

  .orb .logo img {
    width: 62%;
    height: 62%;
    object-fit: contain;
  }

  .status-text {
    font-size: .9rem;
    color: #6c757d;
  }

  .status-strong {
    color: #111;
    font-weight: 600;
  }

  /* Animations */
  @keyframes floatY {
    from {
      transform: translateY(0)
    }

    to {
      transform: translateY(-4px)
    }
  }

  @keyframes blink {

    0%,
    100% {
      opacity: .3
    }

    50% {
      opacity: 1
    }
  }

  @keyframes shiftGradient {

    0%,
    100% {
      background-position: 0% 0%;
    }

    50% {
      background-position: 100% 100%;
    }
  }

  @keyframes rotateShadow {
    to {
      transform: rotate(360deg);
    }
  }

  /* Faster animation timings */
  .orb {
    animation: floatY 1.6s ease-in-out infinite alternate;
    /* was 2.6s */
  }

  .orb::before {
    animation: shiftGradient 3s ease-in-out infinite;
    /* was 6s */
  }

  .orb::after {
    animation: rotateShadow 4s linear infinite;
    /* was 8s */
  }

  .orb .sparkle {
    animation: blink 1s ease-in-out infinite;
    /* was 1.8s */
  }

  #composer{
    background: #000;
    padding: 10px;
    border-radius: 31px;
  }

  #prompt{
    max-height: 80px !important;
    height: 42px;
    background-color: #2a2929;
    border-radius: 20px;
    border: 0px;
    color:#fff !important;
  }

  .image-tile{
    width: 50px;
    height: 45px;
    border: 1px solid #202121;
    border-radius: 13px;
    cursor: pointer;
    color: #e3dede;
  }

  .tile-btn{
    border: 1px solid #202121;
    border-radius: 13px;
    color: #e3dede;
  }

  #sendBtn{
    border-radius: 25px !important;
  }

  #timezoneSelect{
    width: auto;
    border-radius: 25px;
    height: 35px;
    font-size: 12px;
    background-color: #fff;
    color: #000;
    width: 150px !important;
  }

  .gm-style-iw-chr{
    display: none;
  }

  .gm-style-iw-d{
    overflow: hidden !important;
  }

  .gm-style .gm-style-iw-c{
    padding: 0px !important;
  }
  .gm-style .gm-style-iw-tc::after{
    background: #fbb01c!important;
  }
  .analytics-card {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    }

    #totalsContainer {
       text-align: left!important;
    }
    #totalsContainer h4{
        font-weight: bold;
        text-align: left!important;
        font-size: 1.5rem;
    }
    .chartcontainer{
        background: #ffffff78!important;
        border: 2px solid #ffffff!important;
    }
    #screenDetailsContainer .text-muted{
        font-size: 0.8rem;
        font-weight: 400;
    }

    .details{
        font-size: 1em;
        font-weight: 700;
    }

.w-20{
    width: 20px !important;
}

.h-20{
    height: 20px !important;
}

.sidebar .nav .nav-item .nav-link .menu-title{
    padding-left:10px;
}