@import '@/styles/responsive.scss';

.dashboardCard {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 21px;

  cursor: pointer;
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid #f9f8f6;

  border-radius: 10px;
  background: rgba(56, 124, 68, 0.1);
  padding: 20px 33px;
  width: 100%;

  h6 {
    font-size: 17px;
  }
}

.avatar {
  width: 50px;
  min-width: 50px;
  height: 50px;
}

.deliveryRequestTab {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  box-shadow: 4px 6px 10px 0px rgba(56, 124, 68, 0.15);
  border: 1px solid rgba(56, 124, 68, 0.2);

  border-radius: 10px;
  background: #fff;
  padding: 10px 20px;

  @include tablet {
    gap: 8px;
    padding: 8px;

    h5 {
      font-size: 16px;
    }
    h6 {
      font-size: 14px;
    }
  }
}
