.goals {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;

  a {
    color: black;
  }
}

.goal {
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: medium;
  padding: 8px;
  border-radius: 2px;
}

.goal-name {
  font-size: small;
  font-weight: bold;
  padding-top: 5px;
  height: 2rem;
}

.hidden {
  background: linear-gradient(45deg, #a9a9a9, #3e3e3e);

  &>svg {
    color: white;
  }
}

.locked {
  color: #adaaaa;
  background-color: #eaeaea;
}

.streak-days-3 {
  background: conic-gradient(
    from 0deg at 0% 100%,
    #b8d3f5 42deg,
    #12335c 42deg 65deg,
    #68a4f0 65deg 90deg
  );
}

.streak-days-7 {
  background: conic-gradient(
    from 0deg at 0% 100%,
    #b8d3f5 36deg,
    #1d5714 36deg 42deg,
    #12335c 42deg 58deg,
    #f2eb41 58deg 63deg,
    #68a4f0 65deg 83deg,
    #68a4f0 83deg 90deg
  );
}

.streak-days-15 {
  background: conic-gradient(
    from 90deg at 0 0,
    #b8d3f5 40deg,
    #12335c 40deg 70deg,
    #68a4f0 70deg 80deg,
    #1b24dc 80deg 90deg
  );
}
