  .dashboard-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
  }

  @media (max-width: 900px) {
    .dashboard-widgets {
      grid-template-columns: repeat(2, 1fr) !important;
    }
  }
  
  .widget {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: inherit; /* Inherit text color */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .widget-icon {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 10px;
  }
  
  .widget-info {
    flex: 1 1 auto;
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
  }
  
  .widget-info h3 {
    font-size: 18px;
    margin: 0;
    color: #333;
  }
  
  .widget-info p {
    font-size: 24px;
    font-weight: bold;
    margin: 5px 0 0;
    color: #007bff;
  }
  
  .d-flex {
    display: flex !important;
  }
  .flex-column {
    flex-direction: column !important;
  }
  .justify-content-end {
    justify-content: flex-end !important;
  }
  .h-100 {
    height: 100% !important;
  }