:root {
  --color-self: blueviolet;
  --color-eating: cadetblue;
  --color-gifts: hotpink;
}

* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Color classes */
.color-self {
  color: var(--color-self, blueviolet);
}

.color-eating {
  color: var(--color-eating, cadetblue);
}

.color-gifts {
  color: var(--color-gifts, hotpink);
}

/* Layout classes */
.flex-container {
  display: flex;
  gap: 1rem;
}

.flex-container-bottom {
  display: flex;
  gap: 1rem;
  border-top: 1px solid lightgrey;
}

.flex-container-main {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* Entry grid */
.entries-grid {
  display: grid;
  padding-top: 5px;
  margin-top: 1rem;
  border-top: 1px solid black;
  gap: 5px;
  width: 150px;
  max-width: 150px;
  overflow: wrap;
}

/* Button styles */
.btn-primary {
  background-color: blueviolet;
  color: white;
}

button {
  cursor: pointer;
  height: fit-content;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

/* Input styles */
input:disabled {
  background-color: #f0f0f0;
}
