/* GLOBAL ------------------------------------------- */
:root {
  --bg-start: #7785c1;
  --bg-end: #3f4fac;
  --card-bg: #334291;
  --card-bg-soft: #4d599c;
  --text-main: #ffffff;
  --text-muted: rgba(255,255,255,0.75);
  --accent: #ffffff;
}
*{
  color: var(--text-main);
}
body {
  background: linear-gradient(
    135deg,
    var(--bg-start) 0%,
    var(--bg-end) 100%
  );
}
.card {
  background: var(--card-bg);
  border: none !important;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: none !important;
  color: var(--text-main);
}
.card-body {
  padding: 1.25rem;
}
h1 {
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-main);
}
h6 {
  color: var(--text-muted);
  letter-spacing: 1.5px;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.text-muted {
  color: var(--text-muted) !important;
}


/* WEER ------------------------------------------- */
#weatherWidget h4 {
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-main);
  margin-bottom: 0;
}

#weatherWidget img {
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}
.hourly-scroll {
  display: flex;
  overflow-x: auto;
  padding: 10px 0;
  white-space: nowrap;
}
.hour-block {
  text-align: center;
  min-width: 33.33%;
}
.hour-block img {
  width: 40px;
}
#dateTime{
  font-size: 2rem;
  line-height: 1;
}
#weatherTime{
  font-size: 2rem;
  line-height: 1;
  margin-top: 0.5rem;
}

/* WEEKMENU ------------------------------------------- */
#weekMenuWidget .weekMenu-item{
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.5rem;
}
#weekMenuWidget .weekMenu-item h6{
  min-width: 90px;
}
#weekMenuWidget .weekMenu-item .list-group-item{
  padding: 2px 10px;
  border: none;
  background: transparent;
  color: var(--text-main);
}

/* KALENDAR ------------------------------------------- */
#calendarWidget .agenda-item{
  display: flex; 
  gap: 1rem;
  padding: 6px 10px;
  align-items: center;
  border-radius: 12px;
  background: #6d7cc0;
  border: none;
  margin: 5px 0;
}
#calendarWidget .agenda-hours{
  font-size: 10px;
  display: flex; 
  flex-direction: column;
  line-height: 1.1;
}

/* AFVAL ------------------------------------------- */
h6.wasteTitle{
  margin-bottom: 1rem;
  font-weight: 700;
}
#wasteWidget .waste-date {
  font-size: 1.5rem;
  font-weight: 700;
}
#wasteWidget .waste-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 200px; 
  margin: 0 auto;
}
#wasteWidget .waste-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  justify-content: center;
  font-size: 12px; 
  text-transform: uppercase;
}
#wasteWidget .waste-badge {
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
}
#wasteWidget .waste-badge .icon {
  font-size: 0.9rem;
}
#wasteWidget .waste-badge.rest {
  background: rgb(159, 174, 187, 0.4);
}
#wasteWidget .waste-badge.paper {
  background: rgb(254, 201, 27, 0.4);
}
#wasteWidget .waste-badge.pmd {
  background: rgb(102, 195, 250, 0.4);
}

/* SHOPPINGLIST ------------------------------------------- */
h6.shoppingTitle{
    margin-bottom: 1rem;
    font-weight: 700;
}
#shoppingListWidget .list-group-item{
    border: none;
    padding: 0;
}
#shoppingListWidget .list-group-item {
  background: transparent;
  color: var(--text-main);
}
#shoppingListWidget .list-group{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-check-input:disabled{
    opacity: 1;
}
.form-check-input {
  background-color: transparent;
  border-color: rgba(255,255,255,0.4);
}