body {
  background-color: #f8f9fa;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 1rem;
  color: #343a40;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
header h1 {
  margin: 0;
  font-size: 1.75rem;
}
header a.logout-btn {
  background-color: #dc3545;
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: bold;
  transition: background-color 0.2s;
}
header a.logout-btn:hover {
  background-color: #bd2130;
}

main {
  max-width: 1200px;
  margin: 0 auto;
}

.dashboard-toolbar {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.dashboard-toolbar .btn {
  background-color: #d62828;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s;
}
.dashboard-toolbar .btn:hover {
  background-color: #ab2020;
}

table.artikel-tabelle {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: left;
}
table.artikel-tabelle th, table.artikel-tabelle td {
  padding: 1rem;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
table.artikel-tabelle th:last-child, table.artikel-tabelle td:last-child {
  border-right: none;
}
table.artikel-tabelle th {
  background-color: #d62828;
  color: white;
  font-weight: bold;
}
table.artikel-tabelle tr:hover {
  background-color: #f2f2f2;
}
table.artikel-tabelle .btn {
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  background-color: #f77f00;
  color: white;
  text-decoration: none;
  border-radius: 0.25rem;
  margin-right: 0.3rem;
  transition: background-color 0.2s;
}
table.artikel-tabelle .btn:hover {
  background-color: #c46500;
}
table.artikel-tabelle .btn.danger {
  background-color: #dc3545;
}
table.artikel-tabelle .btn.danger:hover {
  background-color: #bd2130;
}

form {
  background: white;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}
form label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: bold;
}
form input[type=text],
form input[type=file],
form textarea,
form select {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  font-size: 1rem;
}
form button[type=submit] {
  background-color: #d62828;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}
form button[type=submit]:hover {
  background-color: #ab2020;
}

.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

.login-form {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
}
.login-form h1 {
  text-align: center;
  margin-bottom: 1rem;
  color: #d62828;
}
.login-form label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: bold;
}
.login-form input[type=text],
.login-form input[type=password] {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  font-size: 1rem;
}
.login-form .btn {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #d62828;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}
.login-form .btn:hover {
  background-color: #ab2020;
}
.login-form .error {
  color: #dc3545;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: bold;
}

table.artikel-tabelle {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: left;
}
table.artikel-tabelle th, table.artikel-tabelle td {
  padding: 1rem;
  border-bottom: 1px solid #ddd;
  text-align: left;
  border-right: 1px solid #ddd;
}
table.artikel-tabelle th:last-child, table.artikel-tabelle td:last-child {
  border-right: none;
}
table.artikel-tabelle th {
  background-color: #d62828;
  color: white;
  font-weight: bold;
}
table.artikel-tabelle tr:hover {
  background-color: #f2f2f2;
}/*# sourceMappingURL=admin.css.map */