/* Buttons, Tabellen, Utilities, Meldungen */
.btn{
  display:inline-block;
  padding:10px 20px;
  background:var(--color-primary);
  color:#fff;
  border-radius:5px;
  text-align:center;
  border:0;
  cursor:pointer;
}
.btn:hover{ filter:brightness(1.05) }
.btn:active{ transform:translateY(1px) }

.btn-primary{ background:var(--color-primary) }
.btn-success{ background:var(--color-success) }

.error-message{
  color:#b00020;
  font-size:.9em;
  margin-bottom:10px;
}

/* Budget-Tabelle */
.table-budget{
  width:100%;
  border-collapse:collapse;
}
.table-budget th, .table-budget td{
  padding:8px 10px;
  border-bottom:1px solid #e6e9ef;
}
.table-budget .row-sep td{
  background:#f8fafc;
  font-weight:600;
}
