@charset "UTF-8";
html, body {
  height: 100%;
  width: 100%;
}

body {
  min-height: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background-color: #ecf0f1;
  color: #2c3e50;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-width: fit-content;
  padding-bottom: 50px;
  transition: transform 0.3s ease;
}
.wrapper header {
  padding: 20px;
  text-align: center;
  color: #ffffff;
  background-color: #7a95ae;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.wrapper .content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
}

.btn {
  padding: 4px 8px;
  background-color: #7a95ae;
  color: white;
  border: none;
  cursor: pointer;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.btn.bg-red {
  background-color: #b0675d;
}
.btn.bg-red:hover {
  background-color: #a45a50;
}
.btn.bg-green {
  background-color: #6da054;
}
.btn.bg-green:hover {
  background-color: #628f4b;
}
.btn.bg-blue {
  background-color: #4f80a2;
}
.btn.bg-blue:hover {
  background-color: #477291;
}
.btn.bg-yellow {
  background-color: #bba25e;
}
.btn.bg-yellow:hover {
  background-color: #b3984c;
}
.btn.bg-primary {
  background-color: #7a95ae;
}
.btn.bg-primary:hover {
  background-color: #6a88a4;
}
.btn:hover {
  background-color: #6a88a4;
}

.icon {
  width: 25px;
  height: 25px;
  background-size: contain; /* Sorgt dafür, dass das Bild skaliert, um vollständig in den Container zu passen */
  background-repeat: no-repeat; /* Verhindert das Wiederholen des Bildes */
  background-position: center; /* Zentriert das Bild im Container */
  cursor: pointer;
  border: none;
}
.icon.plus {
  background-image: url(./../resources/icon_plus.png);
}
.icon.minus {
  background-image: url(./../resources/icon_minus.png);
}
.icon.crossed {
  background-image: url(./../resources/icon_minus.png);
}
.icon.edit {
  background-image: url(./../resources/icon_edit.png);
}

/*# sourceMappingURL=main.css.map */
