

body {
    font-family: "Inter", serif;
    background-color: #ffffff;
    color: #333333;
    margin: 0;
    padding: 0;
}

.overview-section {
    padding: 0rem;
}
.inner-wrapper{
    background: #111827;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title {
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 10px;
}

.actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.selector, .export-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #cccccc;
    border-radius: 0.5rem;
    background-color: #f8f9fa;
    color: #333333;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.card {
    padding: 1.5rem;
    background-color: #1f2937;
    border-radius: 0.5rem;
    box-shadow: none !important;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.label {
    color: #9ca3af;
    font-size: 15px;
}

.value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-top: 0.5rem;
}

.change {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
    color: #4ce198;
}

.change .icon-small {
    width: 1rem;
    height: 1rem;
    margin-right: 0.25rem;
}

.icon-wrapper {
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-wrapper.blue {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.icon-wrapper.purple {
    background-color: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.icon-wrapper.yellow {
    background-color: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.icon-wrapper.green {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
}


/* Header */
.revenue-header {
    margin-bottom: 7px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-title {
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 10px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.select-option {
    background-color: #F3F4F6; /* Light gray background for select */
    color: #1F2937; /* Dark text color */
    border-radius: 8px;
    padding: 8px 16px;
    border: 1px solid rgba(75, 85, 99, 0.2);
}

.export-button {
    background-color: #F3F4F6;
    color: #1F2937;
    border-radius: 8px;
    padding: 8px 16px;
    border: 1px solid rgba(75, 85, 99, 0.2);
    display: flex;
    align-items: center;
}

.export-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

/* Revenue Cards */
.revenue-cards {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 20px;
}

.revenue-card {
    background-color: #1f2937; /* White background */
    padding: 24px;
    border-radius: 8px;
    border: 1px solid rgba(75, 85, 99, 0.2);
    flex-grow: 1;
}

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-title {
    color: #9ca3af; /* Dark gray text */
    font-size: 15px;
}

.card-value {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff; /* Black for card value */
    margin-top: 8px;
}

.card-change {
    display: flex;
    align-items: center;
    color: #10B981; /* Green for positive change */
    margin-top: 8px;
}

.card-change-icon {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}
/* Bio Waste Revenue */
.bio-revenue .card-value {
    color: #fd3550; /* Blue for Bio-waste Revenue */
}

/* Bio Waste Revenue */
.scrap-revenue .card-value {
    color: #15ca20; /* Blue for Bio-waste Revenue */
}

.scrap-revenue .Order-white, .bio-revenue .Order-white, .rvsf-revenue .Order-white {
    color: #ffffff; /* Blue for Bio-waste Revenue */
    font-size: 24px;
    font-weight: bold;
    margin-top: 8px;
}

/* Scrap Revenue */
.rvsf-revenue .card-value {
    color: #F59E0B; /* Yellow for Scrap Revenue */
}

/* Revenue Charts */
.revenue-charts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.chart-card {
    background-color: #1f2937; /* White background */
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(75, 85, 99, 0.2);
}

.chart-title {
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 10px;
}

.chart-content {
    height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1F2937; /* Dark gray for chart content */
}

/* Top Performing Areas */
.top-performing-card {
    background-color: #1f2937;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid rgba(75, 85, 99, 0.2);
    margin-bottom: 20px;
}

.areas-list {
    display: flex;
    flex-direction: column;
}

.area {
    display: flex;
    align-items: flex-start;
    align-items: center;
    border-bottom: 1px solid #373d51;
    margin: 0px;
    padding: 15px 0px;
    
}
.areas-list .area:last-child {
    border-bottom: 0px solid #373d51;
}
.w-10 {
    width: 2.5rem;
  }
  .h-10 {
    height: 2.5rem;
  }
  .mr-3 {
    margin-right: 0.75rem;
  }
.area .area-revenue {
    margin-left: auto;
}

.red-color {
    color: #fd3550 !important; /* Yellow for Scrap Revenue */
    background-color:rgb(253 53 80 / 0.1);
    padding: 3px 12px;
    border-radius: 30px;
}

.Orange-color {
    color: #F59E0B !important; /* Yellow for Scrap Revenue */
    background-color:rgb(245 158 11 / 0.1);
    padding: 3px 12px;
    border-radius: 30px;
}

.green-color {
    color: #10B981 !important; /* Yellow for Scrap Revenue */
    background-color:rgb(16 185 129 / 0.1);
    padding: 3px 12px;
    border-radius: 30px;
}

.area-name {
    color: #9ca3af; /* Dark gray for area names */
    margin-left: 10px;
}

.area-revenue {
    display: flex;
    align-items: center;
}

.revenue-value {
    font-weight: bold;
    color: #ffffff; /* Black for revenue value */
    margin-right: 8px;
}

.revenue-change {
    color: #10B981; /* Green for revenue change */
}

/* Revenue Forecast */
.forecast-card {
    background-color: #FFFFFF;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid rgba(75, 85, 99, 0.2);
}

.forecast-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.forecast-item {
    background-color: #F9FAFB;
    padding: 16px;
    border-radius: 8px;
}

.forecast-value {
    font-size: 24px;
    font-weight: bold;
    color: black;
}

.forecast-change {
    color: #10B981; /* Green for forecast change */
}

        /* Styling the chart container */
        .chart-container {
            width: 100%;
            height: 400px;
            margin: 0 auto;
            background-color: #FFFFFF;
            border-radius: 8px;
            padding: 20px;
        }



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

.heading {
    font-size: 1.125rem;
    color: #e2e8f0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-box {
    position: relative;
}

.search-input {
    background-color: #f3f4f6;
    color: #6B7280;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #E5E7EB;
    padding-left: 2.5rem;
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
    width: 1rem;
    height: 1rem;
    color: #9CA3AF;
}

.add-button {
    background-color: #8B5CF6;
    color: white;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.add-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 20px;
}

.stat-card {
    
    background-color: #1f2937; /* White background */
    padding: 24px;
    border-radius: 8px;
    border: 1px solid rgba(75, 85, 99, 0.2);
    flex-grow: 1;
}

.stat-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.stat-label {
    color: #9ca3af;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}

.growth {
    display: flex;
    align-items: center;
    color: #10B981;
    margin-top: 0.5rem;
}

.growth svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.25rem;
}

.text-green {
    color: #10B981;
}

.custom-container {
            width: 80%;
            margin: 50px auto;
        }
        .custom-card {
            margin-top: 20px;
            background-color: white;
            border-radius: 8px;
            border: 1px solid #e5e7eb;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }
        .custom-header {
            padding: 16px;
            border-bottom: 1px solid #e5e7eb;
        }
        .custom-header h3 {
            font-size: 18px;
            font-weight: 500;
            color: #1f2937;
        }
        .table-wrapper {
            overflow-x: auto;
            padding: 16px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
        }
        .custom-thead {
            background-color: #f3f4f6;
            border-bottom: 1px solid #e5e7eb;
        }
        .custom-th {
            padding: 12px;
            text-align: left;
            font-size: 12px;
            font-weight: 500;
            color: #6b7280;
            text-transform: uppercase;
        }
        .custom-td {
            padding: 12px;
            font-size: 14px;
            color: #1f2937;
        }
        .custom-tr:hover {
            background-color: #f9fafb;
        }
        .status-badge {
            padding: 4px 12px;
            font-size: 12px;
            border-radius: 12px;
        }
        .status-completed {
            color: #047857;
            background-color: #d1fae5;
        }
        .status-in-progress {
            color: #92400e;
            background-color: #fef2c7;
        }
.active-customers-table{
    max-height: 120px;
    overflow: auto;
    display:inline-block;
    }
   .active-customers-table tr td{
           color: #ffffff;
        }

        .active-customers-table tr.d0 td {
            color: #15ca20 ;
          }
        .active-customers-table tr.d1 td {
            color:#3f9ae0;
          }
        .active-customers-table tr.d2 td {
            color:#ffc107;
          }
          .active-customers-table tr.d3 td {
            color:#fd3550 ;
          }
          .active-customers-table tr.d4 td {
            color:#e29bfc ;
          }
          .active-customers-table tr.d5 td {
            color:#95d0d4 ;
          }
          .active-customers-table tr.d6 td {
            color:#71357b ;
          }
          .active-customers-table tr.d7 td {
            color:#fe7e51 ;
          }

          .skill-wrapper { 
            background-color: rgb(192, 192, 192); 
            width: 100%; 
            border-radius: 15px; 
            color: #ffffff;
            font-weight: 600;
        } 
          .skill {             
            color: white; 
            padding: 0px 15px; 
            text-align: right; 
            font-size: 12px; 
            border-radius: 15px; 
        } 

        .skill-P{
            font-weight: 600;
            font-size: 14px;
            color: #fff;
            margin-bottom: 3px;
            margin-top: 10px;
        }
  
        .scrap { 
            background-color: rgb(116, 194, 92); 
        } 
  
        .bio { 
            background-color: rgb(253, 53, 80); 
        } 

        .RVSF { 
            background-color: rgb(255, 193, 7); 
        } 
        .Revenue-Breakdown-table TR TD{
            color: #9ca3af;
        }
        .Revenue-Breakdown-table th{
            color: #ffffff;
        }
        .Revenue-Breakdown-table TR {
            border-bottom: 1px solid #4b5563;
        }
        

        ::-webkit-scrollbar {
            height: 4px;
            width: 4px;
            background: #111827;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #959595;
            -webkit-border-radius: 1ex;
            -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.75);
        }
        
        ::-webkit-scrollbar-corner {
            background: #000;
        }
        
        .scrollable {
          max-width: 200px;
          max-height: 100%;
          
          height: 450px;
          /* change ` overflow: scroll ` to ` overflow: auto ` if you only want vertical scroll */
          overflow: scroll;
         }


        table th, td{
            color: white !important;
        }
