 .dashboard-body {
     background-color: #F3F5F9;
     overflow-x: hidden;
 }

 .dashboard-container {
     display: flex;
     min-height: 100vh;
     width: 100%;
     position: relative;
 }

 .sidebar {
     width: 260px;
     background: var(--secondary);
     color: var(--white);
     position: fixed;
     top: 0;
     left: 0;
     height: 100%;
     z-index: 999;
     display: flex;
     flex-direction: column;
     transition: all 0.3s ease-in-out;
 }

 .sidebar-header {
     padding: 25px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 .side-menu {
     flex: 1;
     padding: 20px 0;
     overflow-y: auto;
 }

 .side-menu a {
     display: flex;
     align-items: center;
     padding: 12px 25px;
     color: rgba(255, 255, 255, 0.7);
     font-weight: 600;
     font-size: 0.95rem;
     border-left: 3px solid transparent;
     transition: 0.3s;
 }

 .side-menu a:hover,
 .side-menu li.active a {
     background: rgba(255, 255, 255, 0.05);
     color: var(--white);
     border-left-color: var(--primary);
 }

 .side-menu i {
     width: 30px;
 }

 .badge {
     margin-left: auto;
     background: #e74c3c;
     color: white;
     font-size: 0.75rem;
     padding: 2px 8px;
     border-radius: 10px;
 }

 .sidebar-footer {
     padding: 20px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 .logout-btn {
     color: #e74c3c;
     font-weight: 700;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .main-content {
     flex: 1;
     margin-left: 260px;
     width: calc(100% - 260px);
     transition: all 0.3s ease-in-out;
     display: flex;
     flex-direction: column;
 }

 .top-bar {
     background: var(--white);
     height: 70px;
     padding: 0 30px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
     position: sticky;
     top: 0;
     z-index: 900;
 }

 .mobile-toggle {
     display: none;
     font-size: 1.5rem;
     cursor: pointer;
     color: var(--secondary);
 }

 .search-box {
     /* background: #F3F5F9; */
     padding: 8px 15px;
     border-radius: 5px;
     display: flex;
     align-items: center;
     gap: 10px;
     width: 300px;
 }

 .search-box input {
     border: none;
     background: transparent;
     width: 100%;
     outline: none;
 }

 .user-profile {
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .user-info img {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     object-fit: cover;
 }

 .content-wrapper {
     padding: 30px;
 }

 .stats-grid-dashboard {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
     gap: 25px;
     margin-bottom: 25px;
 }

 .d-card {
     background: var(--white);
     border-radius: 12px;
     padding: 25px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
     border: 1px solid #eee;
 }

 .stat-box {
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .stat-icon {
     width: 60px;
     height: 60px;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
 }

 .dashboard-split {
     display: grid;
     grid-template-columns: 2fr 1fr;
     gap: 25px;
     margin-bottom: 25px;
 }

 .chart-section {
     position: relative;
     height: 400px;
     width: 100%;
 }

 @media (max-width: 992px) {
     .chart-section {
         width: 500px;
     }
 }

 @media (max-width:500px) {
     .chart-section {
         width: 300px !important;
     }
 }

 .project-row {
     margin-bottom: 20px;
     border-bottom: 1px solid #f5f5f5;
     padding-bottom: 15px;
 }

 .p-info {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 10px;
 }

 .p-icon {
     width: 40px;
     height: 40px;
     background: #F3F5F9;
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .p-progress {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 0.8rem;
 }

 .bar-bg {
     flex: 1;
     height: 6px;
     background: #eee;
     border-radius: 10px;
     overflow: hidden;
 }

 .bar-fill {
     height: 100%;
     background: var(--primary);
     border-radius: 10px;
 }

 .table-responsive {
     overflow-x: auto;
     -webkit-overflow-scrolling: touch;
 }

 table {
     width: 100%;
     border-collapse: collapse;
     min-width: 600px;
 }

 th,
 td {
     padding: 15px;
     text-align: left;
     border-bottom: 1px solid #eee;
 }

 .status-pill {
     padding: 5px 12px;
     border-radius: 20px;
     font-size: 0.75rem;
     font-weight: 700;
 }

 .status-pill.pending {
     background: rgba(231, 76, 60, 0.1);
     color: #e74c3c;
 }

 .status-pill.solved {
     background: rgba(46, 204, 113, 0.1);
     color: #2ecc71;
 }

 .sidebar-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     z-index: 950;
     opacity: 0;
     visibility: hidden;
     transition: 0.3s;
 }

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

 @media (max-width: 992px) {
     .sidebar {
         left: -270px;
     }

     .sidebar.active {
         left: 0;
     }

     .main-content {
         margin-left: 0;
         width: 100%;
     }

     .mobile-toggle {
         display: block;
     }

     /* .search-box {
         display: none;
     } */

     .dashboard-split {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 576px) {

     .top-bar {
         padding: 0 15px;
     }

     .content-wrapper {
         padding: 15px;
     }

     .user-info h4,
     .user-info small {
         display: none;
     }

     .stats-grid-dashboard {
         grid-template-columns: 1fr;
     }

     .chart-section {
         height: 300px;
     }

     th,
     td {
         padding: 10px;
         font-size: 0.85rem;
     }
 }