table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    text-align: left;
    padding: 8px;
}

body {
	padding-bottom: 4rem;
}

tr:nth-child(even){background-color: #f2f2f2}

th {
    background-color: red;
    color: white;
}

.center {
	text-align: center;
}

.btn-primary {
    background-color: red;
    border-color: red;
}

.btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 16px solid #000000;
  border-radius: 50%;
  border-top: 16px solid #ff0000;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.nav-link.active {
  text-decoration: underline;
}

.freezePage{
  height: 100%;
  overflow: hidden;
  width: 100%;
  position: fixed;
}

.custom-file-input{
	padding: 1rem;
}

.custom-file-label::after {
    content: "Durchsuchen...";
}