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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, 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: #fa5625;
            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: #fa5625;
            transition: color 0.3s;
        }
        #Integrations{
            cursor: pointer;
        }
        .w-30{
            font-size: 17px !important;
        }
        .menu a:hover,
        a.active {
            border-bottom: 2px solid #fa5625;
            background-color: #fef0e7;
            color: black;
        }

        .menu a:hover i {
            color: #fa5625;
        }
        
        a{
            text-decoration: none !important;
        }
        
        .logout {
            text-align: center;
            padding: 5px 0;
        }

        .logout a {
            color: #fa5625;
            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: #fa5625;
        }

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

        .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: #fa5625;
            transition: width 0.3s ease;
        }

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

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

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

        .profile-circle {
            width: 35px;
            height: 35px;
            background-color: #fa5625;
            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: 5px 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: #fa5625;
            border-radius: 3px;
        }

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

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

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

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

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

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

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

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

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

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

        .custon-text {
            color: #fa5625 !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: 9px 7px;
            background-color: #fa5625;
            color: white;
        }

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

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

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

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

        .form-control,
        .form-select {
            border-radius: 3px;
            font-size: 15px !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-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: #fa5625;
            font-weight: 500;
            font-size: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

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

        .pagination-common-style li a.active {
            background-color: #fa5625;
            color: white;
            border-color: #fa5625;
            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: #fa5625;
            color: white;
            border-color: #fa5625;
        }

        .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: #fa5625;
            border-color: #fa5625;
        }

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

        .file-options {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .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: 15px;
            background-color: #ff835e;
            color: white;
            font-size: 12px;
            font-weight: 600;
        }
        .chats-badge.active{
            padding: 5px 10px;
            border-radius: 15px;
            background-color: #fa5625;
            color: white;
            font-weight: 600;
        }
        
        .unread-badge {
            background: #fa5625;
            color: white;
            font-size: 12px;
            padding: 0px 7px;
            border-radius: 50%;
        }

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

        .message {
            background: white;
            padding: 10px 15px;
            border-radius: 3px;
            margin-bottom: 10px;
            max-width: max-content;
        }

        .message.sent {
            background: #fee3c5;
            color: black;
            margin-left: auto;
        }

        .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 10px !important;
            flex: 1;
            border: none;
            outline: none;
        }

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

        .top-contact {
            background: white;
            padding: 10px;
            height: 70px;
            z-index: 15;
            border-bottom: 1px solid #fa5625;
            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: #fa5625;
            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: #fa5625;
        }
    
        .copy-btn:hover {
            background: #fa5625;
            color: #fff;
        }
    
        .note {
            background: #fef0e7;
            border-left: 3px solid #fa5625;
            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 #fa5625;
          box-shadow: 0 0 25px #fa5625;
          animation: pulse 2s infinite;
        }
        @keyframes pulse {
          0% { box-shadow: 0 0 10px #fa5625; }
          50% { box-shadow: 0 0 30px #fa5625; }
          100% { box-shadow: 0 0 10px #fa5625; }
        }
        
        .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 #fa5625;
          width: 60px;
          height: 60px;
          border-radius: 50%;
          font-size: 20px;
          color: #fa5625;
          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: #fa5625;
            font-size: 10px;
            border-radius: 5px;
            background-color:#fef0e7;
        }
        .enum-item{
            padding: 2px 4px;
            color: #fa5625;
            width: max-content;
            font-size: 12px;
            border-radius: 5px;
            background-color:#fef0e7;
        }
        .priority{
            padding: 2px 5px;
            font-size: 10px;
            border-radius: 3px;
            font-weight: 600;
        }
        .priority.high{
            border: 1px solid red;
            color: red;
        }
        .priority.medium{
            border: 1px solid #9d9d9d;
            color: #9d9d9d;
        }
        .priority.low{
            border: 1px solid green;
            color: green;
        }
        .priority.high:hover{
            background: red;
            color: white;
        }
        .priority.medium:hover{
            background:#9d9d9d;
            color: white;
        }
        .priority.low:hover{
            background:green;
            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 #fa5625;
            margin-top: 10px;
            width: 100%;
            color: #fa5625;
            text-align: center;
        }
        .bi.bi-x-lg{
            cursor: pointer;
        }
        .checkboxs:checked{
           accent-color: #fa5625;
        }
        .left-panel {
            background: #fa5625;
            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: #fa5625;
            font-weight: 800;
            margin-bottom: 10px;
            text-align: center;
        }
        
        .login-card p {
            color: #333;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .form-floating .form-control {
            border: 1px solid #fa5625;
        }
        .form-floating .form-control:focus {
            box-shadow: 0 0 10px rgba(250,86,37,0.3);
        }
        .form-floating label {
            color: #fa5625;
            font-weight: 500;
        }
        
        .form-floating label:after{
            background-color: unset !important;
        }
        
        .login-btn {
            background: #fa5625;
            border: none;
            border-radius: 3px;
            font-weight: 600;
            font-size: 1.1rem;
            color: white;
            transition: all 0.3s ease;
        }
        .login-btn:hover {
            background: #fa5625;
            color: white;
            box-shadow: 0 8px 20px rgba(250,86,37,0.3);
            transform: translateY(-2px);
        }
        
        .a {
            /*color: #fa5625;*/
            color: black;
            transition: 0.3s;
        }
        .a:hover {
            text-decoration: underline !important;
            color: #fa5625;
        }
        
        .form-check-label {
            color: #333;
            font-weight: 500;
        }
        
        .input-group-text {
            background: #fef0e7;
            border: 1px solid #fa5625;
            color: #fa5625;
            border-radius: 3px;
        }
        .input-group-text i {
            font-size: 1.1rem;
        }
        #rememberMe:checked{
            background-color: #fa5625 !important;
            border-color: #fa5625 !important;
        }
        #rememberMe:focus{
            box-shadow: 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: #fa5625;
        }
        .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 #fa5625;
          font-weight: 500;
          color: #fa5625;
        }
        .w-max{
            width: max-content;
        }
        .agent-item:hover {
          background: #fef0e7;
        }
        
        .agent-item.selected {
          background: #fef0e7;
          border: 1px solid #fa5625;
          font-weight: 500;
          color: #fa5625;
        }
        .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: #fa5625;
        }
        .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:#fa5625;
        }
        
        .profile-pic {
          width: 110px;
          height: 110px;
          object-fit: cover;
          border: 3px solid #fff;
        }
        
        .section-title {
          font-size: 0.9rem;
          font-weight: 500;
          color: #fa5625;
        }
        
        #profile, #close-profile{
            cursor: pointer;
        }
        
        .top-12{
            top: 36px;
        }
        
        .department-checkbox:checked{
            border-color: #fa5625;
            background-color: #fa5625 !important;
        }
        
        .glass-btn.call-attend {
            background-color: #28a745; 
            border: none;
            color: white;
        }
        .form-check-input[type=checkbox]:indeterminate{
            background-color: #fa5625 !important;
            border-color: #fa5625 !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-70{
            width: 68%;
        }
        .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 #fa5625;
          padding: 0px 10px;
          margin: auto;
        }
        
        .cursor-pointer {
          cursor: pointer;
        }
        
        
        
        