/* Complete CSS for Shifts page */

:root {
    --primary-color: #18b56a;
    --primary-color-light: #e6f7ee;
    --blue-task: #6366f1;
    --green-task: #6ee7b7;
    --red-task: #fb7185;
    --yellow-task: #fbbf24;
    --light-blue-task: #38bdf8;
    --sidebar-width: 240px;
    --sidebar-width-collapsed: 80px;
    --header-height: 70px;
    --blue-progress: #3772ff;
    --red-progress: #ff3737;
    --yellow-progress: #ffb800;
    --green-progress: #18b56a;
    --transition-speed: 0.3s;
    --box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    --border-radius-lg: 16px;
    --border-radius-md: 12px;
    --border-radius-sm: 8px;
}



body {
    /* font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; */
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    color: #111827;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

}



/* Page Layout */
/* .container-fluid {
    padding: 0 1.5rem;
} */

.shift-heading{
  /* font-family: DM Sans;
font-weight: 700;
font-size: 60px;

color:#000000;
; */
}
    
   

.shift-wrapper {
   
    
    max-width: 100%; /* Ensure it doesn't exceed the screen width */
    overflow-x: hidden; /* Prevent horizontal scrolling */
}


.row {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.col-12, .col-md-6 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

/* Page headers */
h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

/* Profile selector refinements */
.profile-row {
    margin-bottom: 1.5rem;
}

.profile-selector {
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: 1px solid #e5e7eb;
    background-color: white;
    height: 54px;
    width: 100%;
    max-width: 250px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
}

.profile-selector:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.profile-selector img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
}

.profile-selector .fw-medium {
    font-weight: 600;
    color: #111827;
    font-size: 0.95rem;
    line-height: 1.2;
}

.profile-selector .text-muted {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.4;
}

.profile-selector i {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Button styling */
.btn.border.rounded-pill {
    height: 40px;
    border-color: #e5e7eb;
    color: #4b5563;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.btn.border.rounded-pill:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
}

.btn.border.rounded-pill i {
    font-size: 0.75rem;
}

.add-shift-btn {
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 2rem;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.add-shift-btn:hover {
    background-color: #129a59;
}

/* Schedule container */
.schedule-container {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.schedule-container .mb-3 {
    margin-bottom: 1rem !important;
}

.time-slots {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.time-slot {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.day-row {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    position: relative;
}

.day-row:last-child {
    margin-bottom: 0;
}

.day-label {
    width: 60px;
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.task-container {
    position: relative;
    flex-grow: 1;
    height: 70px;
    border-bottom: 1px solid #f3f4f6;
}

.task {
    position: absolute;
    height:auto;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.task:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}


.task-blue {
    background-color: var(--blue-task);
    color: white;
}

.task-green {
    background-color: var(--green-task);
    color: white;
}

.task-red {
    background-color: var(--red-task);
    color: white;
}

.task-yellow {
    background-color: var(--yellow-task);
    color: white;
}

.task-light-blue {
    background-color: var(--light-blue-task);
    color: white;
}

.task img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: absolute;
    left: 10px;
    top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.task-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.task-project {
    font-size: 0.7rem;
    opacity: 0.9;
    margin-left: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.task-details {
    display: flex;
    gap: 6px;
    margin-top: 5px;
    margin-left: 30px;
}

.task-detail {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 0.7rem;
    font-weight: 500;
}















/* Updated Task Layout CSS */
.task {
  position: relative;
  height: auto;
  border-radius: 10px;
  padding: 7px 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.task-left {
  display: flex;
  flex-direction: column;
  /* margin-left: 30px; */
}

.task-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.task img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.task-title {
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}

.task-project {
  font-size: 0.75rem;
  opacity: 0.9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.task-details {
  display: flex;
  flex-direction: row;
  gap: 4px;
  text-align: right;
}

.task-detail {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.7rem;
  font-weight: 500;
  white-space: nowrap;
}




/* Employee details section */
.employee-details {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.employee-details h1 {
    margin-bottom: 1.5rem;
}

.progress-container {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    height: 100%;
    
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.progress-header h6 {
    margin-bottom: 0;
    font-size: 1rem;
}

.dropdown button {
    background: transparent;
    border: none;
    color: #111827;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown button::after {
    margin-left: 0.4rem;
}

/* Gauge styling */
.gauge-container {
    position: relative;
    width: 100%;
    height: 150px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.gauge {
    width: 100%;
    max-width: 220px;
    height: 100%;
}

.gauge path {
    transition: all 0.5s ease-in-out;
}

.gauge text {
    fill: #9ca3af;
    font-family: "Segoe UI", sans-serif;
}

.gauge-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -65%);
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
}

.gauge-label {
    position: absolute;
    top: 68%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.875rem;
    color: #6b7280;
}

/* Stats container */
.stats-container {
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding: 0 0.5rem;
}

.stat-item {
    flex: 1;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.stat-green {
    color: var(--primary-color);
}

.stat-yellow {
    color: #f59e0b;
}

.stat-orange {
    color: #f97316;
}

.stat-label {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.3;
}

/* Improved Workload Chart Styling to Match Figma Design */
.workload-chart {
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* Align items to bottom */
  height: 240px; /* Increased height for better spacing */
  margin-top: 2rem;
  padding: 0 1rem;
}

.month-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% / 7);
  position: relative;
  height: 100%;
}

.month-stack {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  top: 140px;
}

.project-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  color: white;
  position: absolute;
  bottom: 40px; /* Default position */
  transition: all 0.3s ease;
  background-color: #333;
}

/* Position circles at different heights based on data-value */
.project-circle[data-value="02"] {
  bottom: 60px;
}

.project-circle[data-value="04"] {
  bottom: 90px;
}

.project-circle[data-value="07"] {
  bottom: 120px;
}

.project-circle[data-value="08"] {
  bottom: 150px;
}

.project-circle[data-value="10"] {
  bottom: 180px;
}

.project-circle.empty {
  background-color: transparent;
  border: 2px solid #e5e7eb;
  color: transparent;
}

.month-label {
  font-size: 14px;
  color: #6b7280;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  position: relative;
  top: 140px;
}

/* Active state hover effect */
.project-circle.active:hover {
  transform: scale(1.1);
  cursor: pointer;
}
/* Dropdown menus styling */
.employee-dropdown-menu,
.filters-dropdown-menu,
.progress-timeframe-dropdown,
.workload-timeframe-dropdown {
    border-radius: var(--border-radius-sm);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.employee-item,
.filter-option,
.timeframe-item {
    transition: background-color 0.2s ease;
}

.employee-item:hover,
.filter-option:hover,
.timeframe-item:hover {
    background-color: #f3f4f6;
}

/* Button to toggle full schedule */
.btn-outline-secondary {
    border-color: #d1d5db;
    color: #4b5563;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 0.375rem;
}

.btn-outline-secondary:hover {
    background-color: #f3f4f6;
    border-color: #9ca3af;
    color: #1f2937;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  
    .progress-container {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
   
    .shift-wrapper {
        padding: 0 0.75rem;
      }
    h1 {
        font-size: 1.75rem;
    }
    
    .profile-row {
        flex-direction: column;
    }
    
    .profile-selector {
        margin-bottom: 1rem;
        width: 100%;
        max-width: none;
    }
    
    .header-actions {
        justify-content: space-between;
        width: 100%;
    }
    
    .schedule-container {
        padding: 1.25rem;
    }
    
    .task {
        padding: 8px;
    }
    
    .task-title, 
    .task-project {
        font-size: 0.7rem;
        margin-left: 28px;
    }
    
    .task img {
        width: 22px;
        height: 22px;
        top: 8px;
        left: 8px;
    }
    
    .task-detail {
        font-size: 0.65rem;
        padding: 1px 4px;
    }
    
    .project-circle {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .gauge-value {
        font-size: 1.75rem;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
   
    
    .shift-wrapper {
        padding: 0 0.75rem;
    }
    
    h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .add-shift-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .schedule-container {
        padding: 1rem;
    }
    
    .progress-container {
        padding: 1rem;
    }
    
    .time-slot {
        font-size: 0.7rem;
    }
    
    .day-label {
        width: 50px;
        font-size: 0.8rem;
    }
    
    .task-container {
        height: 60px;
    }
    
    .task {
        height: auto;
    }
    
    .task-details {
        margin-top: 2px;
    }
    
    .project-circle {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .stats-container {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 0 0 50%;
      
        margin-bottom: 1rem;
    }
}

/* Animation for the charts */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.gauge path,
.project-circle.active {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Custom tooltip for tasks */
.task[title]:hover:after {
    content: attr(title);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    z-index: 100;
}

/* Smooth transitions for employee switch */
.schedule-body, 
.gauge-value, 
.stats-container, 
.workload-chart {
    transition: opacity 0.3s ease;
}

/* Custom scrollbar for dropdowns */
.employee-dropdown-menu::-webkit-scrollbar,
.filters-dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.employee-dropdown-menu::-webkit-scrollbar-track,
.filters-dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.employee-dropdown-menu::-webkit-scrollbar-thumb,
.filters-dropdown-menu::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.employee-dropdown-menu::-webkit-scrollbar-thumb:hover,
.filters-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}





/* Dark Mode */


/* Dark mode styles */
body.dark-mode {
    background-color: #121212;
    color: #e0e0e0;
  }
  
  /* Sidebar dark mode */
  body.dark-mode .sidebar {
    background-color: #1e1e1e;
    color: #e0e0e0;
  }
  
  body.dark-mode .sidebar-toggle {
    background-color: #1e1e1e;
    color: #e0e0e0;
  }
  
  body.dark-mode .sidebar .nav-link:not(.active) {
    color: #e0e0e0 !important;
  }
  
  body.dark-mode .sidebar .nav-link.active {
    background-color: var(--primary-color) !important;
    color: white !important;
  }
  
  body.dark-mode .sidebar .nav-link:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.1) !important;
  }
  
  /* Mobile header dark mode */
  body.dark-mode .mobile-header {
    background-color: #1e1e1e;
  }
  
  /* Main content dark mode */
  body.dark-mode .main-content {
    background-color: #121212;
  }
  
  /* Input fields */
  body.dark-mode .search-input {
    background-color: #2d2d2d;
    border-color: #3d3d3d;
    color: #e0e0e0;
  }
  
  body.dark-mode .search-icon {
    color: #888;
  }
  
  /* Buttons and controls */
  body.dark-mode .icon-btn {
    color: #e0e0e0;
  }
  
  body.dark-mode .date-arrow {
    background-color: #2d2d2d;
    border-color: #3d3d3d;
    color: #e0e0e0;
  }
  
  body.dark-mode .dropdown-toggle {
    background-color: #2d2d2d;
    border-color: #3d3d3d;
    color: #e0e0e0;
  }
  
  body.dark-mode .btn-light {
    background-color: #2d2d2d;
    border-color: #3d3d3d;
    color: #e0e0e0;
  }
  
  /* Cards and containers */
  body.dark-mode .stat-box {
    background-color: #1e1e1e;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  body.dark-mode .stat-title {
    color: #aaa;
  }
  
  body.dark-mode .calendar-section {
    background-color: #1e1e1e;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  /* Table elements */
  body.dark-mode .employee-table th {
    background-color: #1e1e1e;
    color: #e0e0e0;
    border-bottom-color: #333;
  }
  
  body.dark-mode .employee-table td {
    border-bottom-color: #333;
  }
  
  body.dark-mode .employee-name-col {
    background-color: #1e1e1e;
    border-right: 1px solid #f0f0f0 !important;
  }
  
  body.dark-mode .team-header {
    background-color: #233229 !important;
  }
  
  body.dark-mode .dept-header {
    background-color: #222940 !important;
  }
  
  body.dark-mode .pagination-container {
    background-color: #1e1e1e;
    border-top-color: #333;
  }
  
  body.dark-mode .page-number {
    background-color: #2d2d2d;
    border-color: #3d3d3d;
    color: #e0e0e0;
  }
  
  body.dark-mode .page-arrow {
    background-color: #2d2d2d;
    border-color: #3d3d3d;
    color: #e0e0e0;
  }
  
  body.dark-mode .entries-dropdown {
    background-color: #2d2d2d;
    border-color: #3d3d3d;
    color: #e0e0e0;
  }
  
  body.dark-mode .entries-dropdown-menu {
    background-color: #2d2d2d;
    border-color: #3d3d3d;
  }
  
  body.dark-mode .entry-option:hover {
    background-color: #3d3d3d;
  }
  
  /* Text colors */
  body.dark-mode .page-title {
    color: #e0e0e0;
  }
  
  body.dark-mode .breadcrumb-item a {
    color: var(--primary-color);
  }
  
  body.dark-mode .breadcrumb-item.active {
    color: #aaa;
  }
  
  body.dark-mode .entries-text, 
  body.dark-mode .page-text {
    color: #aaa;
  }
  
  body.dark-mode .employee-id {
    color: #888;
  }
  
  /* Fix for dropdown menus */
  body.dark-mode .dropdown-menu {
    background-color: #2d2d2d;
    border-color: #3d3d3d;
  }
  
  body.dark-mode .dropdown-item {
    color: #e0e0e0;
  }
  
  body.dark-mode .dropdown-item:hover {
    background-color: #3d3d3d;
  }
  
  /* Profile dropdown */
  body.dark-mode .profile-dropdown {
    background-color: #2d2d2d;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  body.dark-mode .profile-dropdown ul li a {
    color: #e0e0e0;
  }
  
  body.dark-mode .profile-dropdown ul li a:hover {
    background-color: #3d3d3d;
  }
  body.dark-mode .profile-selector{
    background-color: #3d3d3d;
  }  

  body.dark-mode h1{
   color: white;
  }

  body.dark-mode .schedule-container{
    background-color: #3d3d3d;
    color: white; 
  }

  body.dark-mode h5{
    color: white;
   }

   body.dark-mode .progress-container{
    background-color: #3d3d3d;
    color: white; 
  }

  body.dark-mode h6{
    color: white;
   }

   body.dark-mode .dropdown-toggle{
    color: white;
   }   




















/***************************************** Shift Dashboard No Employee Error **************************************/







   /* Styles for No Employees Found Section */
.no-employees-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 16px;
    padding: 2rem;
    margin-top: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
  }
  
  .error-illustration {
    width: 100%;
    max-width: 300px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
  }
  
  .error-illustration img {
    width: 100%;
    height: auto;
  }
  
  .error-message {
    text-align: center;
    max-width: 500px;
  }
  
  .error-message h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
  }
  
  .error-message p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
  }
  
  /* Dark mode styles */
  body.dark-mode .no-employees-container {
    background-color: #1e1e1e;
  }
  
  body.dark-mode .error-message h2 {
    color: white;
  }
  
  body.dark-mode .error-message p {
    color: white;
  }
  
  /* Mobile responsive styles */
  @media (max-width: 768px) {
    .no-employees-container {
      padding: 1.5rem;
    }
    
    .error-illustration {
      max-width: 250px;
    }
    
    .error-message h2 {
      font-size: 2rem;
    }
    
    .error-message p {
      font-size: 0.85rem;
      padding: 0 0.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .error-illustration {
      max-width: 200px;
    }
    
    .error-message h2 {
      font-size: 1.8rem;
    }
  }



/* Fix Font Family Issues and fot size also */




/* Specific adjustments to header sizes */
h1 {
  font-size: 2rem; /* You can increase or decrease based on Figma */
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

h5 {
  font-size: 1.25rem; /* Adjust to Figma's font size */
  font-weight: 600;
  color: #111827;
}

h6 {
  font-size: 1rem; /* Adjust to Figma's font size */
  font-weight: 600;
  color: #111827;
}

/* Task Titles & Other Text Elements */
.task-title {
  font-size: 0.95rem;  /* Adjust to match Figma */
  font-weight: 600;
  margin-left: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}

.task-project {
  font-size: 0.75rem;  /* Adjust based on Figma */
  opacity: 0.9;
  margin-left: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

/* Buttons */
.btn {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Progress Container Text */
.progress-container h6 {
  font-size: 1rem;
}

/* Update font sizes for mobile responsiveness */
@media (max-width: 768px) {
  h1 {
      font-size: 1.75rem;
  }

  .task-title {
      font-size: 0.7rem;
  }
  
  .task-project {
      font-size: 0.7rem;
  }
  
  .task img {
      width: 22px;
      height: 22px;
      top: 8px;
      left: 8px;
  }
  
  .task-detail {
      font-size: 0.65rem;
  }
  
  .project-circle {
      width: 30px;
      height: 30px;
      font-size: 0.8rem;
  }
  
  .gauge-value {
      font-size: 1.75rem;
  }
  
  .stat-value {
      font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  h1 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
  }

  .task-title, 
  .task-project {
      font-size: 0.7rem;
      margin-left: 28px;
  }
}





/* ADD this CSS to your shift-dashboard.css file to fix gauge positioning: */

.gauge-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 180px !important;
    margin-bottom: 2rem !important;
    position: relative !important;
}

.gauge {
    width: 100% !important;
    max-width: 240px !important;
    height: auto !important;
}

.gauge-value {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -60%) !important;
    font-weight: 700 !important;
    font-size: 2.25rem !important;
    color: #111827 !important;
    z-index: 10 !important;
    margin: 0 !important;
}

.gauge-label {
    position: absolute !important;
    top: 68% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    font-size: 0.875rem !important;
    color: #6b7280 !important;
    opacity: 0.8 !important;
    z-index: 10 !important;
    margin: 0 !important;
}

/* Dark mode support for gauge */
body.dark-mode .gauge-value {
    color: #e0e0e0 !important;
}

body.dark-mode .gauge-label {
    color: #a0a0a0 !important;
}