body {
  background-color: whitesmoke;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.TrackingHeader {
  align-self: flex-start;
  margin: 60px 60px 30px;
}

.Tracking h1 {
  background: linear-gradient(
    90deg,
    rgb(9, 69, 200) 0%,
    rgb(121, 204, 231) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: space-around;
  font-size: 50px;
}
.Tracking h2 {
  font-size: 15px;
  margin-left: 30px;
}
.Tracking p {
  font-size: 20px;
  color: gray;
  margin-left: 30px;
}
.Tracking h3 {
  font-size: 40px;
  margin-left: 30px;
}
.Tracker-under {
  font-size: 14px !important;
  color: gray !important;
}
.boxes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  border-radius: 10px;
}
.TotaalUren,
.UrenJason,
.UrenRobbe,
.Projecten,
.Team {
  width: 400px;
  height: 150px;
  background: white;
  border-radius: 10px;
  color: rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 20px;
  border: 2px solid lightgray;
  gap: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.TotaalUren:hover,
.UrenJason:hover,
.UrenRobbe:hover,
.Projecten:hover,
.Team:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.14);
}
.uren-entries {
  width: 100%;
  margin: 50px 0;
  padding: 20px;
  box-sizing: border-box;
}

.uren-entries h2 {
  font-size: 28px;
  margin-bottom: 20px;
  margin-left: 20px;
}

.uren-lijst {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.uren-item {
  border-radius: 10px;
  padding: 15px 20px;
  color: black;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.uren-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15);
}

.uren-item.declarabel {
  background-color: white;
}

.uren-item.intern {
  background-color: white;
}

.uren-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.uren-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.uren-type {
  font-size: 14px;
  font-weight: bold;
  margin-left: 10px;
  color: rgb(58, 58, 58);
}

.uren-persoon {
  margin-left: auto;
  font-size: 14px;
  color: rgb(58, 58, 58);
  font-weight: 500;
}

.uren-tijd {
  font-size: 16px;
  font-weight: bold;
  color: blue;
  margin-left: 15px;
}

.uren-item p {
  margin: 5px 0;
  font-size: 14px;
}

.uren-item small {
  color: gray;
  font-size: 12px;
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
  .TrackingHeader {
    margin: 40px 20px 20px;
  }

  .Tracking h1 {
    font-size: 36px;
  }

  .Tracking p {
    font-size: 18px;
    margin-left: 0;
  }

  .boxes {
    gap: 20px;
    padding: 0 15px;
  }

  .TotaalUren,
  .UrenJason,
  .UrenRobbe,
  .Projecten,
  .Team {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 130px;
    padding: 15px;
  }

  .Tracking h3 {
    font-size: 32px;
  }

  .uren-entries {
    padding: 15px;
  }

  .uren-entries h2 {
    font-size: 24px;
    margin-left: 0;
  }

  .uren-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .uren-persoon {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .TrackingHeader {
    margin: 30px 15px 15px;
  }

  .Tracking h1 {
    font-size: 28px;
  }

  .Tracking p {
    font-size: 16px;
  }

  .Tracking h3 {
    font-size: 24px;
    margin-left: 0;
  }

  .boxes {
    gap: 15px;
    padding: 0 10px;
  }

  .TotaalUren,
  .UrenJason,
  .UrenRobbe,
  .Projecten,
  .Team {
    padding: 12px;
    font-size: 16px;
    min-height: 110px;
  }

  .uren-entries {
    padding: 10px;
  }

  .uren-entries h2 {
    font-size: 20px;
  }

  .uren-item {
    padding: 12px 15px;
  }

  .uren-header h3 {
    font-size: 18px;
  }

  .uren-type,
  .uren-persoon {
    font-size: 12px;
  }

  .uren-tijd {
    font-size: 14px;
    margin-left: 0;
  }

  .uren-item p {
    font-size: 13px;
  }

  .uren-item small {
    font-size: 11px;
  }
}