  .dashboard-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 24px;
      background-color: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
      font-family: 'Segoe UI', sans-serif;
      color: #333;
  }

  .dashboard-header .title-section h2 {
      margin: 0;
      font-size: 28px;
      font-weight: 700;
  }

  .dashboard-header .title-section small {
      font-size: 16px;
      color: #666;
  }

  .dashboard-header .button-group {
      display: flex;
      gap: 10px;
  }

  .dashboard-header .button-group button {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 8px 14px;
      font-size: 14px;
      font-weight: 600;
      border: 1px solid #ccc;
      border-radius: 6px;
      background-color: #fff;
      cursor: pointer;
      transition: all 0.2s;
      color: #333;
  }

  .dashboard-header .button-group button:hover {
      background-color: #e6e6e6;
      border-color: #999;
  }

  .dashboard-header .button-group i {
      font-size: 16px;
  }