* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0;
}
body {
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  background: #f6f8fa;
  color: #222;
}
header {
  height: 80px;
  background: #e4e4e4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
header h1 {
  color: #3a5edb;
  font-weight: 700;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 25px;
}
.subscribe-box {
  background: #fff;
  border-radius: 8px;
  padding: 4px 12px;
  display: flex;
  align-items: center;
  box-shadow: 0 0 3px rgba(0,0,0,0.2);
}
.subscribe-box input {
  border: none;
  outline: none;
  background: none;
  font-size: 14px;
  width: 220px;
}
.header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-icons .material-symbols-outlined {
  font-size: 26px;
  color: #3d45db;
  cursor: pointer;
  transition: color 0.2s ease;
}
.header-icons .material-symbols-outlined:hover {
  color: #2b37d3;
}
.avatar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.status-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 8px;
  height: 8px;
  background: #3d45db;
  border-radius: 50%;
}
.container {
  display: flex;
  width: 100%;
  min-height: 100vh;
}
.horizontalenav {
  background: #fff;
  width: 250px;
  border-right: 1px solid #d0d0d0;
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
  gap: 10px;
}
.horizontalenav a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111;
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  padding: 10px 12px;
  white-space: nowrap;
}
.horizontalenav a:hover,
.horizontalenav a.active {
  background: #3d45db;
  color: #fff;
}
.content {
  flex: 1;
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.header {
  text-align: center;
  margin-bottom: 2rem;
}
.header h1 {
  font-size: 2rem;
  margin-bottom: 0.2rem;
}
.header p {
  color: #666;
  margin: 0;
}
.totals {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}

.justify-content-between{
  justify-content: space-between;
  display: flex;
}

.card {
  background: #fff;
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  flex: 0 0 200px;
  text-align: left;
}
.card h2 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.4rem;
}
.card .number {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0.3rem 0;
}

.row{
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.special1{
  color: darkblue;
}

.special2{
  color: green;
}

.button1{
  text-align: center;
  background-color: #2b37d3;
  border-radius: 15px;
  color: white;
  width: 100px;
  height: 25px;
}




.card span {
  color: #777;
  font-size: 0.85rem;
}


/* Ruimte tussen de entries */
.entries {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* ruimte tussen de blokken */
}

/* Basisstijl voor elke entry */
.entry {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fb;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  text-align: left;
}

.hours {
  font-weight: bold;
  font-size: 1.8rem;
  color: inherit;
}


/* Kleuren per persoon */
.entry.juul {
  background-color: #0078ff;
  color: #fff;
}

.entry.juul .hours {
  color: #cce5ff;
}

.entry.theo {
  background-color: #34c759;
  color: #fff;
}

.entry.theo .hours {
  color: #d2f8d2;
}

/* Extra netjes */
.info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.meta {
  display: flex;
  align-items: center;
  gap: 6px;
}
