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

.Reports {
  display: flex;
  align-items: center;
  gap: 21px;

  cursor: pointer;
  box-shadow: 4px 6px 10px 0px rgba(56, 124, 68, 0.15);
  border: 1px solid rgba(56, 124, 68, 0.2);

  border-radius: 15px;
  background: #fff;
  padding: 15px 33px;
  // width: 305px;
  max-width: 100%;
  height: auto;

  h5 {
    font-size: 15px;
  }

  h6 {
    font-weight: 700;
    font-size: 28px;
  }
}

.tabButton {
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.1);

  border: 1px solid #f9f8f6;
  background: rgba(56, 124, 68, 0.1);
  width: 109px;
  height: 50px;

  &:first-child {
    border-radius: 25px 0px 0px 25px;
  }

  &:last-child {
    border-radius: 0px 25px 25px 0px;
  }

  &:hover,
  &.active {
    box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.1);

    border: 1px solid #387c44;
    background: #74bb80;
    color: white;
  }
}

.tabContainer {
  @include tablet {
    flex-direction: column;
    gap: 8px;
    width: 100%;

    .tabButton {
      border-radius: 50px;
      width: 100%;
    }
  }
}

.DateBtn {
  margin-left: 7px;
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid #f9f8f6;
  border-radius: 25px;
  background: rgba(56, 124, 68, 0.1);

  width: 180px;
  height: 50px;
}

.earningTab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  box-shadow: 4px 6px 10px 0px rgba(56, 124, 68, 0.15);
  border: 1px solid rgba(56, 124, 68, 0.2);

  border-radius: 15px;
  background: #fff;
  // width: 203px;

  padding: 18px 25px;

  h5 {
    font-weight: 600;
    font-size: 25px;
  }
}
