
        body {
            overflow-x: hidden;
            background-color: #f5f7fa;
        }

        .sidebar {
            min-height: 100vh;
            transition: width 0.3s;
            background-color: #ffffff;
            width: 250px;
            position: fixed;
            top: 0;
            bottom: 0;
            z-index: 1000;
        }
h1{
    color:#aa8038;
    
}
        .sidebar.collapsed {
            width: 80px;
        }

        .main-content {
            transition: margin-left 0.3s;
            margin-left: 250px;
            padding: 20px;
            width: calc(100% - 250px);
        }

        .main-content.expanded {
            margin-left: 80px;
            width: calc(100% - 80px);
        }

        .sidebar .nav-link {
            font-size: 1rem;
            padding: 10px 20px;
            color: #6c757d;
        }

        .sidebar .nav-link.active {
            color: #AA8038;
        }

        .sidebar .nav-link:hover {
            background-color: #e9ecef;
        }

        .sidebar .nav-link i {
            margin-right: 10px;
        }

        .sidebar.collapsed .nav-link span {
            display: none;
        }

        .card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            background-color: #ffffff;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .dashboard-title {
            font-size: 2rem;
            font-weight: bold;
        }

        .nav-tabs .nav-link.active {
            background-color: #AA8038;
            color: white !important;
        }

        .nav-tabs .nav-link {
            color: #AA8038;
        }

        .toggle-btn {
            background-color: #AA8038;
            color: white;
            border: none;
            border-radius: 5px;
            padding: 5px 10px;
            cursor: pointer;
            position: absolute;
            top: 10px;
            left: 10px;
            z-index: 1001;
        }

        .card .number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #AA8038;
            text-align: center;
        }

        .card h5 {
            font-size: 1.5rem;
            font-weight: bold;
            color: #AA8038;
            text-align: center;
        }

        .card span {
            font-size: 1rem;
            color: #AA8038;
            text-align: center;
            display: block;
        }

        .lead-source {
            margin-bottom: 10px;
        }

        .lead-source .icon {
            width: 30px;
            display: inline-block;
            vertical-align: middle;
        }

        .lead-source .progress {
            flex: 1;
            margin-top: 5px;
        }

        .status-legend {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .status-legend li {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .status-legend span {
            width: 10px;
            height: 10px;
            display: inline-block;
            margin-right: 10px;
            border-radius: 50%;
        }

        .status-graph-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .status-graph {
            flex: 0 0 200px;
            height: 200px;
            position: relative;
        }

        .chart-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            font-weight: bold;
            color: #AA8038;
        }

        .top-performing-agent {
            background-color: #AA8038;
            border-radius: 10px;
            padding: 20px;
            margin-top: 20px;
            position: relative;
        }

        .top-performing-agent h5 {
            font-weight: bold;
        }

        .top-performing-agent .agent-info {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .top-performing-agent .agent-details {
            flex-grow: 1;
            display: flex;
            align-items: center;
        }

        .top-performing-agent .agent-details h6 {
            margin: 0;
            font-size: 1rem;
        }

        .top-performing-agent .agent-stats {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .top-performing-agent .agent-stats div {
            text-align: right;
            margin-left: 20px;
        }

        .top-performing-agent .agent-stats p {
            margin: 0;
            color: #AA8038;
        }

        .top-performing-agent .badge-crown {
            position: absolute;
            top: 10px;
            right: 10px;
        }


.badge{
    background-color:#AA8038;
}
        .agent-leaderboard {
            margin-top: 20px;
        }

        .agent-leaderboard h5 {
            font-weight: bold;
        }

        .agent-leaderboard .table {
            margin-bottom: 0;
        }

        .status-graph-container-call-outcomes {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .status-legend-call-outcomes {
            list-style: none;
            padding-left: 0;
            display: flex;
            flex-direction: column;
        }

        .status-legend-call-outcomes li {
            margin-bottom: 10px;
        }

        .status-legend-call-outcomes span {
            width: 10px;
            height: 10px;
            display: inline-block;
            margin-right: 10px;
            border-radius: 50%;
        }

        .chart-text-call-outcomes {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            font-weight: bold;
            color: #AA8038;
        }

        .card-call-outcomes {
            padding: 10px;
        }

        .task-panel {
            width: 300px;
            background-color: white;
            border-left: 1px solid #d4a350;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            right: -300px;
            top: 0;
            bottom: 0;
            z-index: 1050;
            transition: right 0.3s;
        }

        .task-panel.show {
            right: 0;
        }

        .task-panel-header {
            padding: 10px 20px;
            border-bottom: 1px solid #d4a350;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .task-panel-tabs {
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-bottom: 1px solid #d4a350;
        }

        .task-panel-tabs .tab {
            cursor: pointer;
            padding: 10px;
            font-weight: bold;
        }

        .task-panel-tabs .tab.active {
            color: #AA8038;
            border-bottom: 2px solid #AA8038;
        }

        .task-panel-body {
            padding: 20px;
            overflow-y: auto;
            height: calc(100% - 105px);
        }

        .task-panel-content {
            display: none;
        }

        .task-panel-content.active {
            display: block;
        }

        .no-task {
            text-align: center;
        }

        .toggle-task-panel {
            position: fixed;
            top: 10px;
            right: 10px;
            z-index: 1050;
            cursor: pointer;
        }

        .task-table {
            width: 100%;
            margin-top: 20px;
        }

        .task-table th,
        .task-table td {
            padding: 10px;
            text-align: left;
            
        }

        .task-table th {
            background-color:#AA8038;
            color:#ffffff;
        
        }

        .task-table td:last-child {
            text-align: center;
        }

        .task-table .task-options {
            cursor: pointer;
            color: #AA8038;
        }

        .task-table .task-options:hover {
            color: #d4a350;
        }
        table
        {
            font-size:12px;
        }
        .btn{
           background-color:#AA8038 !important;
           color:#FFFFFF !important;
            
        }
        .top-performing-agent h5{
            color:#ffffff;
        }
        
        .integrations .btn-secondary {
    background-color: #6c757d; /* Bootstrap's default secondary button color */
    border-color: #6c757d;
}

.integrations h5 {
    margin-bottom: 0; /* Removes default margin from h5 for tighter spacing */
}

.integrations p {
    margin-bottom: 0; /* Removes default margin from p for tighter spacing */
}

.fa-2x { /* Ensure icons are appropriately sized */
    font-size: 1.5rem;
}
 .user-img {
            width: 100px;
            height: 100px;
            background-color: #e9ecef;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #adb5bd;
            margin-bottom: 0.5rem;
        }

  .switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
}
.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: #2196F3;
}
input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
    transform: translateX(14px);
}
.icon-placeholder {
    width: 64px;
    height: 64px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #6c757d;
}

.paginate_button .page-item .active
{
    background-color:#AA8038;
}
