* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    background-color: white;
}

.sidebar {
    width: 90px;
    height: 100vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    padding: 10px 0;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.08);
}

.shadow-sm {
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.08) !important;
}

.top-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-icon {
    color: #ff754c;
    font-size: 26px;
    padding: 5px 0;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.06);
    margin: 10px 0;
}

.menu-container {
    flex: 1;
    overflow-y: auto;
    width: 100%;
}

.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
}

.menu a {
    color: #333;
    text-align: center;
    text-decoration: none;
    padding: 10px 0;
    font-size: 12px;
    width: 90%;
    transition: all 0.2s ease;
    border-radius: 3px;
}

.menu a i {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
    color: #ff754c;
    transition: color 0.3s;
}
#Integrations {
    cursor: pointer;
}
.w-30 {
    font-size: 17px !important;
}
.menu a:hover,
a.active {
    border-bottom: 2px solid #ff754c;
    background-color: #fef0e7;
    color: black;
}

.menu a:hover i {
    color: #ff754c;
}

a {
    text-decoration: none !important;
}

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

.logout a {
    color: #ff754c;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logout a i {
    display: block;
    font-size: 18px;
    margin-bottom: 3px;
}

.logout a:hover {
    color: black;
}

.menu-container::-webkit-scrollbar {
    width: 0px;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    left: 90px;
    width: calc(100% - 90px);
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    z-index: 998;
    display: none;
}

.overlay.active {
    display: block;
}

.main-header {
    background-color: white;
    color: #000;
    height: 75px;
    margin-left: 80px;
    padding-left: 30px !important;
    z-index: 10 !important;
    display: none !important;
    width: calc(100% - 80px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.08);
}

.main-header .logo h4 {
    font-weight: bold;
    color: #ff754c;
}

.brand-icon i {
    font-size: 24px;
    color: #ff754c;
}

.nav-link {
    color: #000;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding: 5px;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #ff754c;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ff754c;
}

.nav-link:hover::after {
    width: 100%;
}

.notification-icon {
    font-size: 20px;
    color: #ff754c;
    cursor: pointer;
}

.profile-circle {
    width: 35px;
    height: 35px;
    background-color: #ff754c;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    .main-header {
        display: flex;
    }
}

.main-content {
    margin-top: 10px;
    margin-left: 90px;
    background-color: #fcfcfc;
    min-height: calc(100vh - 10px);
}

.localbtn {
    padding: 4px 10px !important;
    font-size: 13px !important;
    vertical-align: unset;
    border-radius: 3px;
}

.fullbtn {
    padding: 5px 10px !important;
    font-size: 13px !important;
    color: white;
    border: none;
    background-color: #ff754c;
    border-radius: 3px;
}

.fullbtn:hover {
    color: white;
    background-color: #ff754c;
}

.whitebtn {
    padding: 5px 10px !important;
    font-size: 13px !important;
    color: white;
    border: 1px solid white;
    background-color: #ff754c;
    border-radius: 3px;
}

.whitebtn:hover {
    color: black;
    border: 1px solid white;
    background-color: white;
}

.hoverbtn {
    padding: 4px 10px;
    font-size: 13px !important;
    color: #ff754c;
    border: 1px solid #ff754c;
    background-color: white;
    border-radius: 3px;
}

.hoverbtn:hover {
    color: white;
    background-color: #ff754c;
}

.dashboard-sec-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
}

.dashboard-heading-1 {
    padding: 10px 15px;
    color: white;
    background-color: #ff754c;
    border-radius: 10px;
}

.profile-icons {
    padding: 5px 11px;
    color: #ff754c;
    border: 1px solid #ff754c;
    background-color: #fef0e7;
    border-radius: 3px;
}

.custom-border{
    border: 1px solid #ff754c;
}
.custom-bg-more-light {
    background-color: #fef0e7 !important;
}

.custom-bg-light {
    background-color: #ff835e !important;
}

.custom-bg-dark {
    background-color: #ff754c !important;
}

.custon-text {
    color: #ff754c !important;
}
.custon-light-text {
    color: #fef0e7 !important;
}

.dashboard-sec-2 {
    padding: 15px;
    border-radius: 50px;
    background: #ff835e;
    color: white;
}

.accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: #fff5ed !important;
    box-shadow: none;
}

.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none;
}

.accordion-item {
    border: none;
}

.table-heading {
    padding: 6px 7px;
    background-color: #ff754c;
    color: white;
}

.th {
    /* background-color: #fef0e7 !important; */
    vertical-align: middle;
    font-size: 14px;
    white-space: nowrap;
    font-weight: 600 !important;
}

.td {
    vertical-align: middle;
    white-space: nowrap;
}

.modal-header {
    background-color: #ff754c;
    color: white;
}

.modal-footer {
    background-color: rgb(242, 242, 242);
}

.form-control,
.form-select {
    border-radius: 3px;
    font-size: 13px !important;
}

.form-control:focus,
.form-select:focus {
    border-color: #ff835e;
    outline: 0;
    box-shadow: 0 0 0 3px #fef0e7;
}

.col-form-label {
    font-size: 15px;
}
.form-label{
    font-size: 14px;
}
.form-check-label {
    font-size: 15px !important;
}

.pagination-common-style {
    display: flex;
    gap: 3px;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

.pagination-common-style li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 25px;
    height: 25px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 2px;
    color: #ff754c;
    font-weight: 500;
    font-size: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pagination-common-style li a:hover {
    background-color: #ff754c;
    color: white;
}

.pagination-common-style li.active a {
    background-color: #ff754c;
    color: white;
    border-color: #ff754c;
    font-weight: bold;
}

.pagination-common-style li a.disabled {
    pointer-events: none;
    color: #6c757d;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.pagination-badge {
    padding: 0px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #fff;
    border-radius: 10px;
    max-width: 420px;
    width: 100%;
    overflow: hidden;
    animation: fadeIn 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

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

.contact-item {
    cursor: pointer;
    transition: background-color 0.2s;
}

.contact-item:hover {
    background-color: #f0f0f0;
}

.contact-item.selected {
    background-color: #fef0e7;
}

.avatar {
    width: 40px;
    height: 40px;
    background-color: #ff835e;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.contact-item.selected .checkbox {
    background-color: #ff754c;
    color: white;
    border-color: #ff754c;
}

.input-group-text {
    border-radius: 3px;
    background-color: unset;
    padding: 10px 1px 10px 10px;
}

.group-input:focus-within {
    border: 1px solid #ff835e;
    outline: 0;
    box-shadow: 0 0 0 3px #fef0e7;
}

.search-input {
    border-left: none;
    transition: none;
}

.search-input:focus {
    border: none;
    box-shadow: none;
}

.input-group:has(.search-input:focus) .input-group-text {
    border: none;
    box-shadow: none;
}

.card-header {
    border-radius: 3px 3px 0px 0px !important;
}

.dark-checkbox:checked {
    background-color: #ff754c;
    border-color: #ff754c;
}

.dark-checkbox:focus {
    box-shadow: 0 0 0 3px #fef0e7;
    border-color: #ff754c;
}

.file-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.position-absolute {
    position: absolute !important;
}
.file-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: white;
    padding: 5px 18px;
    border-radius: 3px;
    border: 1.5px solid #ff764d;
    box-shadow: 0 1px 4px #fef0e7;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: bold;
    color: #ff764d;
}

.file-box i {
    color: #ff764d;
    font-size: 1rem;
}

.file-box:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: #fef0e7;
}

.bubble-box {
    position: relative;
    padding: 10px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bubble-box::after {
    content: "";
    position: absolute;
    bottom: -40px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 1px solid transparent;
    border-top: 50px solid white;
}

.card-body-custom-code {
    padding: 2px 20px 25px 20px;
    overflow: hidden;
}

.chat-list {
    height: 100%;
    overflow-y: auto;
    z-index: 16;
    background: white;
    border-right: 1px solid #ddd;
}

.chat-item {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f1f1f1;
}

.chat-item:hover {
    background: #fef0e7;
}

.chats-badge {
    padding: 5px 10px;
    border-radius: 3px;
    background-color: #fee3c5;
    color: black;
    font-size: 10px;
    font-weight: 500;
}
.chats-badge.active {
    padding: 5px 10px;
    border-radius: 3px;
    background-color: #ff754c;
    color: white;
    font-weight: 500;
}

.unread-badge {
    background: #ff754c;
    color: white;
    font-size: 12px;
    padding: 0px 7px;
    border-radius: 50%;
}

.chat-messages {
    height: calc(100vh - 120px);
    overflow-y: auto;
    padding: 10px;
    background: rgb(245, 245, 245);
}

.message {
    background: white;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    border-radius: 3px;
    width: max-content;
    margin-bottom: 2px;
    max-width: 500px;
}

.message.sent {
    background: #ffffff;
    color: black;
    margin-left: auto;
}
.temp-msg{
    width: 100%;
    max-width: 250px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.chat-input {
    background: white;
    padding: 10px;
    z-index: 15;
    border-top: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-input input {
    background: white;
    border-radius: 3px;
    padding: 5px 3px !important;
    flex: 1;
    border: none;
    outline: none;
}

.search-bar {
    padding: 16px 10px;
    background: white;
    height: 67px;
    border-bottom: 1px solid #ff754c;
}

.top-contact {
    background: white;
    padding: 10px;
    height: 70px;
    z-index: 15;
    border-bottom: 1px solid #ff754c;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-contact img {
    border-radius: 50%;
}

.chat-height {
    height: 100vh;
}

.chatbox-height {
    height: 100%;
}
.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 1;
}
.user-icon {
    width: 17%;
}

.user-icon-sec {
    width: 15%;
}

.chat-input .btn:hover {
    background: #e14e21;
}
.api-card {
    background: white;
    border-radius: 3px;
    padding: 1.2rem 1.5rem;
    margin: auto;
}

.h11 {
    font-size: 22px;
    margin-bottom: 1rem;
}

.h22 {
    font-size: 18px;
    margin: 1.5rem 0 1rem;
}

.method {
    background: #ff754c;
    color: #fff;
    padding: 0.2rem 0.6rem;
    font-size: 11px;
    border-radius: 4px;
    font-weight: bold;
}

.url {
    font-family: monospace;
    margin-left: 1rem;
    padding: 4px 5px;
    color: #fa6233;
    background: #fef0e7;
    font-size: 0.95rem;
    word-break: break-all;
}

.content-type {
    color: #666;
    font-size: 0.9rem;
    margin: 1rem 0;
}

.code-container {
    position: relative;
}

.code-block {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 1rem;
    font-family: monospace;
    font-size: 0.9rem;
    white-space: pre;
    overflow-x: auto;
}

.copy-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #fef0e7;
    border: none;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    cursor: pointer;
    color: #ff754c;
}

.copy-btn:hover {
    background: #ff754c;
    color: #fff;
}

.note {
    background: #fef0e7;
    border-left: 3px solid #ff754c;
    padding: 0.8rem 1rem;
    margin: 1rem 0;
    font-size: 0.85rem;
    color: #fa6233;
    border-radius: 4px;
}

.api-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 2rem 0;
}
.sec-heading {
    font-size: 16px;
    white-space: nowrap;
}
.code-block1 {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 10px 10px;
    font-family: "SF Mono", Menlo, monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    overflow-x: auto;
    white-space: pre;
}
#btns-create-temp {
    padding: 3px 10px 10px 10px;
    background: #fef0e7;
}
.mobile-toggle-btn {
    display: none;
}
#back-btn {
    display: none;
}

@media (max-width: 768px) {
    .sidebar {
        display: none !important;
    }
    .sidebar.active {
        display: flex !important;
    }

    .main-content {
        margin-left: 0px !important;
    }

    .main-header {
        width: 100% !important;
        margin-left: 0px !important;
    }

    .mobile-toggle-btn {
        display: inline-block;
        margin-right: 10px;
    }
    .desktop-view {
        display: none !important;
    }
    .mobile-view {
        display: block !important;
    }
    .table-heading {
        font-size: 14px;
    }
    .templates-toogle-btn {
        display: block !important;
    }
    .desktop-temp-btns {
        display: none !important;
    }
    .main-header {
        padding-left: 20px !important;
    }
    #chat-inbox {
        display: none !important;
    }
    .user-icon-sec {
        width: 11%;
    }
    #back-btn {
        display: inline-block;
    }
    .temp-header {
        flex-direction: column;
    }
    .type-div {
        width: 100% !important;
    }
    .header-title {
        width: 100% !important;
    }
    .temp-creation-card {
        flex-direction: column;
    }
    .caller-img {
        width: 160px !important;
        height: 160px !important;
    }
    .caller-name {
        font-size: 30px;
    }
    .call-status {
        font-size: 21px;
    }
}
.temp-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.mobile-temp-btns {
    position: fixed;
    top: 0;
    right: -220px;
    height: 800vh;
    width: 220px;
    padding: 10px;
    background: #fff;
    box-shadow: -2px 0 6px rgba(0, 0, 0, 0.2);
    z-index: 1100;
    transition: right 0.3s ease;
}

.temp-overlay.active {
    display: block;
}

.mobile-temp-btns.active {
    right: 0;
}
.close-btn {
    position: absolute;
    top: 3px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 22px;
    color: #333;
    cursor: pointer;
    transition: 0.2s ease;
}
.close-btn:hover {
    color: #ff4d4d;
}

.call-modal {
    background: #f5f5f5;
    border: none;
}
.caller-img-wrapper {
    position: relative;
}
.caller-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #ff754c;
    box-shadow: 0 0 25px #ff754c;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 10px #ff754c;
    }
    50% {
        box-shadow: 0 0 30px #ff754c;
    }
    100% {
        box-shadow: 0 0 10px #ff754c;
    }
}

.call-status span {
    animation: dots 1.5s steps(3, end) infinite;
}
@keyframes dots {
    0%,
    20% {
        color: transparent;
    }
    40% {
        color: black;
    }
    60% {
        color: transparent;
    }
    80%,
    100% {
        color: black;
    }
}

.glass-btn {
    background: #fef0e7;
    border: 1px solid #ff754c;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 20px;
    color: #ff754c;
    transition: 0.1s;
}
.glass-btn:hover {
    background: #fef0e7;
    transform: scale(1.01);
}
.end-call {
    background: rgba(255, 0, 0, 0.8);
    color: white;
    border: none;
}
.end-call:hover {
    background: rgba(255, 0, 0, 1);
}
.p-11-2 {
    padding: 11.2px !important;
}
.agent-select {
    padding: 16px 10px;
}
.agent-name-badge {
    padding: 2px 4px;
    color: #ff754c;
    font-size: 10px;
    font-weight: normal;
    border-radius: 3px;
    background-color: #fee3c5;
}
.labels {
    padding: 2px 4px;
    font-size: 10px;
    font-weight: normal;
    border-radius: 3px;
    background-color: rgb(152, 152, 152);
}
.enum-item {
    padding: 2px 4px;
    color: #ff754c;
    width: max-content;
    font-size: 12px;
    font-weight: normal;
    border-radius: 5px;
    background-color: #fef0e7;
}
.priority {
    padding: 2px 5px;
    font-size: 10px;
    border-radius: 3px;
    font-weight: 600;
}
.priority.high {
    background: #ff3e3e;
    color: white;
}
.priority.medium {
    background: #9d9d9d;
     color: white;
}
.priority.normal {
     background: #9d9d9d;
    color: white;
}
.priority.low {
    background: #57c857;
    color: white;
}

.chat-list {
    overflow: visible;
}
.chat-item i {
    display: none;
}
.chat-item:hover i {
    display: flex;
}
.drag-fields {
    padding: 7px 13px;
    border: 1px solid #ff754c;
    margin-top: 10px;
    width: 100%;
    color: #ff754c;
    text-align: center;
}
.bi.bi-x-lg {
    cursor: pointer;
}
.checkboxs:checked {
    accent-color: #ff754c;
}
.left-panel {
    background: #ff754c;
    color: white;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.feature-list li {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 1.15rem;
    position: relative;
    padding-left: 35px;
    transition: transform 0.3s;
}
.feature-list li:hover {
    transform: translateX(5px);
}
.feature-list li i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.3rem;
}

.left-panel::before,
.left-panel::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: white;
    opacity: 0.1;
}
.left-panel::before {
    width: 150px;
    height: 150px;
    top: -30px;
    left: -30px;
}
.left-panel::after {
    width: 250px;
    height: 250px;
    bottom: -50px;
    right: -50px;
}

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

.login-card {
    width: 100%;
    max-width: 500px;
    border-radius: 3px;
    background: white;
    padding: 40px 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.login-card h2 {
    color: #ff754c;
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
}

.login-card p {
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.form-floating .form-control {
    border: 1px solid black;
}
.form-floating .form-control:focus {
    box-shadow: 0 0 10px rgba(250, 86, 37, 0.3);
}
.form-floating label {
    color: #726d6b;
    font-weight: 500;
    font-size: 14px;
}

.form-floating label:after {
    background-color: unset !important;
}

.login-btn {
    background: #ff754c;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    transition: all 0.3s ease;
}
.login-btn:hover {
    background: #ff754c;
    color: white;
    box-shadow: 0 8px 20px rgba(250, 86, 37, 0.3);
    transform: translateY(-2px);
}

.a {
    /*color: #ff754c;*/
    color: black;
    transition: 0.3s;
}
.a:hover {
    text-decoration: underline !important;
    color: #ff754c;
}

.form-check-label {
    color: #333;
    font-weight: 500;
}

.input-group-text {
    background: #fef0e7;
    border: 1px solid #ff754c;
    color: #ff754c;
    border-radius: 3px;
}
.input-group-text i {
    font-size: 1.1rem;
}
#rememberMe:checked {
    background-color: #ff754c !important;
    border-color: #ff754c !important;
}
#rememberMe:focus {
    box-shadow: 0 0 0 0.25rem #fef0e7;
}
@media (max-width: 768px) {
    .left-panel {
        display: none;
    }
}
.hvh-100 {
    height: 100vh !important;
}
.dropdown-menu {
    position: fixed !important;
    width: max-content;
    background-color: white !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    margin-left: 0px !important;
    border-radius: 3px !important;
    z-index: 99999 !important;
    transform: none !important;
}
.dropdown-item:hover,
.dropdown-item:active {
    background-color: #fef0e7;
    color: #ff754c;
}
.dropdown-submenu .submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 99999;
    min-width: 220px;
    border-radius: 3px !important;
    max-height: 320px;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.submenu .card-body::-webkit-scrollbar {
    width: 0px;
}
.dropdown-submenu:hover .submenu {
    display: block;
}
.agent-item {
    display: block;
    padding: 6px 12px;
    margin: 2px 0;
    border-radius: 3px;
    cursor: pointer;
    transition: 0.2s;
}
.template-item {
    display: block;
    padding: 6px 12px;
    margin: 2px 0;
    border-radius: 3px;
    cursor: pointer;
    transition: 0.2s;
}
.template-item.selected {
    background: #fef0e7;
    border: 1px solid #ff754c;
    font-weight: 500;
    color: #ff754c;
}
.w-max {
    width: max-content;
}
.agent-item:hover {
    background: #fef0e7;
}

.agent-item.selected {
    background: #fef0e7;
    border: 1px solid #ff754c;
    font-weight: 500;
    color: #ff754c;
}
.chat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    border-bottom: 1px solid #eee;
    cursor: default;
}

.chat-item.selectable {
    cursor: pointer;
}

.chat-item.selected {
    background-color: #fef0e7;
}

.select-checkbox {
    margin-right: 8px;
    accent-color: #ff754c;
}
.profile-view {
    height: 100%;
    z-index: 15;
    border-left: 1px solid #ddd;
    position: sticky;
}

.profile-pic-wrapper {
    display: inline-block;
    padding: 4px;
    border-radius: 50%;
    background: #ff754c;
}

.profile-pic {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border: 3px solid #fff;
}

.section-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ff754c;
}

#profile,
#close-profile {
    cursor: pointer;
}

.top-12 {
    top: 36px;
}

.department-checkbox:checked {
    border-color: #ff754c;
    background-color: #ff754c !important;
}

.glass-btn.call-attend {
    background-color: #28a745;
    border: none;
    color: white;
}
.form-check-input[type="checkbox"]:indeterminate {
    background-color: #ff754c !important;
    border-color: #ff754c !important;
}
.glass-btn.call-attend:hover {
    background-color: #218838;
}
.chat-item-list {
    height: 80vh;
    /* overflow-y: auto; */
    overflow-x: visible;
}
.chat-item-list::-webkit-scrollbar {
    width: 0;
}
.fw-500 {
    font-weight: 500;
}
.w-55 {
    width: 55%;
}
.fs-14 {
    font-size: 14px;
}
.fs-13 {
    font-size: 13px;
}
.temp-menu {
    bottom: 34px !important;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: #ff835e;
    color: #fff;
    margin: 0 auto 20px;
}
.resources-heading {
    width: max-content;
    border-bottom: 2px solid #ff754c;
    padding: 0px 10px;
    margin: auto;
}
.img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff754c;
}
.nav-pills .nav-link.active {
    background: #ff754c;
    border-radius: 3px;
}
#heading-media {
    display: none;
}

.category-card.active,
.option-card.active {
    border-color: #ff754c !important;
    background-color: #fef0e7;
    color: #ff754c;
}
.fs-7 {
    font-size: 13px;
}
.stepper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.stepper input[type="radio"] {
    display: none;
}

.stepper label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #555;
}

.stepper input[type="radio"]:checked + label {
    background: #fef0e7;
    color: #ff754c;
}

.stepper label i {
    font-size: 14px;
}

.metric-box {
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.metric-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.metric-box h5 {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0;
}

.template-detail-circle-icon {
    padding: 15px 18px;
    border-radius: 50px;
    background: #ff835e;
    color: white;
}

.template-content {
    border-left: 4px solid #ff754c;
    background-color: #f8f9fc;
    padding: 15px;
    border-radius: 8px;
}

.chart-container {
    position: relative;
    height: 300px;
    margin-top: 20px;
}

.main-contentt {
    padding-top: 70px;
}

.stat-card {
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.stat-card p {
    font-size: 0.85rem;
    color: #6e707e;
    margin-bottom: 5px;
}

.progress {
    height: 8px;
    border-radius: 4px;
    margin-top: 10px;
}

.custom-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
}
.nav-tabs .nav-link.active-acc {
    font-weight: 600;
    color: #ff754c;
    border-bottom: 1px solid #ff754c;
    border-width: 1px;
}

.info-box {
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 15px;
    text-align: start;
    background: #fff;
}

.info-title {
    font-weight: 600;
}

.w-5-acc {
    width: 5%;
}
.tr.selected {
    background-color: #f8d7da !important;
    transition: background-color 0.3s;
}

.tbody tr {
    cursor: pointer;
}

.td.checkbox-col {
    width: 40px;
    text-align: center;
}

.td.checkbox-col input {
    pointer-events: none;
}

.w-max {
    width: max-content !important;
}
#sidePanel {
    height: 475px;
}



.field-label.active {
    border: 2px solid #ff754c;
    background: #fff3ed;
}

.drop-highlight-cus {
    border: 2px dashed #ff754c !important;
    background: #fef0e7;
}

.table-responsive-cus {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}

.table-responsive-cus::-webkit-scrollbar {
    width: 0px;
}

.td {
    min-width: 200px;
    height: 80px;
    vertical-align: top;
    border: 1px dashed transparent;
    transition: 0.2s;
}

#labelsList {
    min-height: 200px;
    max-height: 400px;
    overflow-x: auto;
    border: 1px solid lightgray;
    border-radius: 3px;
    padding: 10px;
    transition: all 0.3s ease;
    background-color: #fff;
}

#labelsList.drop-highlight-cus {
    border-color: #ff754c;
    background-color: #fef0e7;
    box-shadow: 0 0 15px rgba(250, 86, 37, 0.3);
}

#labelsList::-webkit-scrollbar {
    width: 0px;
}

#labelsList::-webkit-scrollbar-thumb {
    background-color: rgba(250, 86, 37, 0.5);
    border-radius: 3px;
}

.field-label {
    padding: 6px 12px;
    border-radius: 3px;
    text-align: center;
    margin-top: 4px;
    font-size: 13px;
    background: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 400;
}

.field-label:hover {
    border: 1px solid #ff754c;
    background: #fef0e7;
    color: #ff754c;
}

.field-label.active {
    border: 1px solid #ff754c;
    background: #fef0e7;
    color: #ff754c;
}

.drop-highlight-cus {
    border: 2px dashed #ff754c !important;
    background: #fff0e7;
}

.h-60 {
    max-height: 70vh;
}

.text-light-more-customer {
    color: #bfc5cb;
}

.shadow-card:hover {
    background-color: #f6f6f6;
}

.w-5{
    width: 5%;
}

.instance-card img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.instance-card span {
    font-weight: 600;
    color: #333;
}

.instance-card:hover {
    border-color: #ff754c;
    background-color: #fef0e7;
}

.instance-card.selected {
    background: #fef0e7;
    border-color: #ff754c;
    color: #ff754c;
}

.instance-card.selected span {
    color: #ff754c;
}
.instance-card.selected img {
    border:1px solid #ff754c;
}

.modal-body{
    max-height: 330px;
    overflow-y: auto;
}
.modal-body::-webkit-scrollbar{
    width: 0px;
}
.select2-selection__choice{
    background-color: #fef0e7  !important;
    color: #ff754c !important;
    border: 1px solid #ff754c !important;
}
.select2-selection__choice__remove{
    color: #ff754c !important;
}
.select2-container--default .select2-results__option--selected{
    color: #ff754c !important;
    background-color: #fef0e7 !important;
}
.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar{
    width: 0px;
}
.department-badge{
    padding: 2px 10px;
    border-radius: 3px;
    background-color: #fee3c5;
    color: #ff754c;
}
.permission-badge{
    padding: 2px 10px;
    border-radius: 3px;
    background-color: #fee3c5;
    color: #ff754c;
}
.temp-name{
    padding: 2px 6px;
    border-radius: 3px;
    background-color: #fef0e7;
    color: #ff754c;
    border: 1px solid #ff754c;
}
.top-50px{
    top: 54px;
}

.number-badge{
    padding: 2px 10px;
    border-radius: 3px;
    font-size: 11px;
    cursor: pointer;
    font-weight: 500;
    background-color: #fee3c5;
    color: #ff754c;
}


.step-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #e9ecef; font-weight: 600;
}
.step-circle.active { background: #ff754c; color: #fff; }
.step-line { width: 60px; height: 3px; background: #e9ecef; }

.field-box {
    padding: 7px 14px;
    background: #f6f6f6;
    border-radius: 3px;
    margin-bottom: 6px;
    font-weight: 500;
    border: 1px solid #e3e3e3;
}
.integration-scroll {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 5px;
}
.integration-scroll::-webkit-scrollbar{
    width: 0px;
}


td{
    font-size: 13px;
    padding: 5px 8px !important;
    vertical-align: middle;
}

.quick-replies-dropdown {
    position: absolute;
    bottom: 140px; 
    left: 0;
    /* margin-left: 387px; */
    width: 100%;
    max-height: 220px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none; 
}

.quick-replies-dropdown::-webkit-scrollbar{
    width: 0px;
}

.quick-replies-dropdown .reply {
    padding: 4px 10px;
    border-bottom: 1px solid #eee;
    display: flex;
    cursor: pointer;
    transition: background 0.2s;
    gap: 12px;
}

.quick-replies-dropdown .reply:last-child {
    border-bottom: none;
}

.quick-replies-dropdown .reply:hover {
    background: #f0f0f0;
}

.quick-replies-dropdown .name {
    font-weight: 600;
    font-size: 13px;
    color: #333;
}

.quick-replies-dropdown .messagee {
    font-size: 12px;
    color: #555;
    margin-top: 2px;
}

.overflow-y-auto{
    overflow-y: auto !important;
}
.overflow-y-auto::-webkit-scrollbar{
    width: 0px;
}
.fs-12{
    font-size: 9px;
}
.fs-14px{
    font-size: 14px !important;
}
.dropdown-menu-start {
    left: unset !important;
    right: 12px  !important;
    transform: translateX(0) !important;
}
.fs-12px{
    font-size: 12px !important;
}
.pointer{
    cursor: pointer;
}


.new-profile-side-panel {
    /* width: 360px; */
    height: 100vh;
    padding: 1rem !important;
    overflow-y: auto;
    /* box-shadow: -4px 0 18px rgba(0,0,0,0.06); */
    background: #fff;
    border-left: 1px solid #e5e7eb;
}
.new-profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fee3c5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
}
.new-profile-card-section {
    margin-top: 1.25rem;
}
.custom-gray-text{
    color: #b8b9bb;
}
.profile-label:hover{
    background-color: #fee3c5;
    border-radius: 3px;
}
.custom-bg-more-light-orignal{
    background-color: #fee3c5 !important;
}
.fs-13px{
    font-size: 13px;
}
.fs-10px{
    font-size: 10px !important;
}
.text-gray{
    color: rgb(165, 165, 165) !important;
}
.bg-gray{
    background-color: rgb(165, 165, 165) !important;
}
.bg-more-gray{
   border: 1px solid #cbcbcb !important;
}
#messageInput:disabled{
    background-color: unset;
}
.profile-padding{
    padding: 5px 9px;
}



    .custom-tabs-ui .section {
      background: #fefdfd;
      border-radius: 3px;
      border: 1px solid #e1e4e8;
      padding: 1rem 1rem 1.5rem;
      margin-bottom: 2rem;
    }
    .custom-tabs-ui .card {
      cursor: pointer;
      transition: box-shadow 0.3s ease;
    }
    .custom-tabs-ui .card:hover {
      box-shadow: 0 6px 20px #fff0e7;
    }
    .custom-tabs-ui .card-icon {
      width: 36px;
      height: 36px;
      border-radius: 3px;
      /* background-color: #fee3c5; */
      display: flex;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
      margin-right: 10px;
    }
    .custom-tabs-ui .card-icon img {
      max-width: 70%;
      max-height: 70%;
      object-fit: contain;
    }
    .custom-tabs-ui .toggle-btn {
      cursor: pointer;
      user-select: none;
      font-weight: 600;
      color: #6c757d;
      transition: color 0.2s ease;
    }
    .date-badge {
        padding: 1px 4px;
        color: white;
        font-size: 10px;
        font-weight: 500;
        border-radius: 3px;
        background-color: #cbcbcb;
    }

    .tempbtn {
        padding: 5px 10px !important;
        font-size: 13px !important;
        color: black; 
        border: 1px solid black;
        border-radius: 3px;
    }

    /* .custom-sidebar {
        width: 260px;
        height: 100vh;
        background: #fff;
        border-right: 1px solid #e4e4e4;
        padding: 10px 15px;
        position: fixed;
        overflow-y: auto;
    } */
    
    .custom-page-content {
        margin-left: 250px;
        /* padding: 10px; */
    }

    .pro-sidebar {
    width: 250px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
    border-right: 1px solid #ececec;
    /* padding: 25px 20px; */
    position: fixed;
    overflow-y: auto;
    /* font-family: "Inter", sans-serif; */
    box-shadow: 8px 0 25px rgba(0,0,0,0.04);
}

.ps-title {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    letter-spacing: 0.6px;
}

.ps-toggle {
    width: 100%;
    background: #ffffff;
    border: 0px solid #e8e8e8;
    padding: 8px 10px;
    font-weight: 500;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 3px;
    transition: all 0.25s 
ease;
    font-size: 14px;
}

/* .ps-toggle:hover {
    background: #fafafa;
    transform: translateY(-1px);
} */

.ps-toggle[aria-expanded="true"] .i  {
    /* background: linear-gradient(135deg, #fff4ea, #ffe8d7); */
    color: #fa6233;
    /* border-left:2px solid #ffb081; */
    /* box-shadow: 0 2px 10px #ffe8d7; */
}

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

.ps-list li a {
    display: flex;
    align-items: center;
    padding: 2px 9px;
    border-radius: 3px;
    color: #505050;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.ps-list li a.active {
    background: unset !important;
    /* color: #ff6a2a !important; */
    /* border-color: #ffe0cb; */
    /* transform: translateX(1px); */
}

.ps-list li a.active .i {
    background: unset !important;
    color: #ff6a2a !important;
    /* border-color: #ffe0cb; */
    transform: translateX(4px);
}

.active-link {
    background: #ffe7d4;
    border-color: #ffb081;
    color: #ff6a2a !important;
    font-weight: 600;
}

 .ntf-icon{
      width:46px;
      height:46px;
      border-radius:3px;
      background:#f3f6ff;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:18px;
      color:#2d3748;
    }

    .ntf-title{
      font-size:15px;
      font-weight:600;
    }

    .ntf-text{
      margin:0;
      color:#6b7280;
      font-size:13px;
    }

    .form-check-input:checked{
      background-color:#ff6a2a !important;
      border-color:#ff6a2a !important;
    }

    /* .connected-badge {
      padding: 2px 4px;
      color: #ff754c;
      font-size: 10px;
      font-weight: normal;
      border-radius: 3px;
      background-color: #fee3c5;
    } */

    .connected-badge {
      background: #f6f6f6;        /* soft neutral grey */
      color: #333;               /* clean dark text */
      padding: 3px 5px;
      border-radius: 3px;
      font-size: 12px;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .connected-badge i {
      color: #28a745;            
      font-size: 11px;
    }

    .chat-inputt {
      position: relative;
      border-bottom: 2px solid transparent;
    }

    .chat-inputt::before {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0%;
      height: 2px;
      background: #fa6233;
      transition: width 0.25s ease;
    }

    .chat-inputt:hover::before {
      width: 100%;
    }

    .chat-inputt.active::before {
      width: 100%;
    }


    .preview-card {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      margin-right: 5px;
      padding: 2px 5px;
      border: 1px solid #ddd;
      font-size: 10px;
      border-radius: 3px;
      background: #fafafa;
      margin-top: 0px;
    }

.preview-card img {
    width: 25px;
    height: 25px;
    border-radius: 3px;
    object-fit: cover;
}

.temp-btn{
    padding: 5px 10px !important;
    font-size: 13px !important;
    /* border: 1px solid; */
    background-color: #f6f6f6;
    border-radius: 3px;
}
.notes-block {
background: white;
padding: 10px 15px;
display: flex;
font-size:12px;
flex-direction: column;
margin-left:8px;
border-radius: 3px;
background-color:#fee3c5;
margin-bottom: 10px;
max-width: max-content;
}

.sidebar.collapsed {
    width: 50px !important;
    transition: 0.3s;
}
.sidebar.collapsed .menu a span,
.sidebar.collapsed .menu a br {
    display: none;
}

.sidebar.collapsed .top-icon img {
    width: 28px !important;
}

.sidebar.collapsed ~ .main-content {
    margin-left: 50px;
}
.position-absolute {
    position: absolute !important;
    /* top: 25px !important; */
}