/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

.importButton {
    padding: 0;
    border: none;
    background: none;
    color: #007bff;
    margin: 0 75px 0 0;
}
    .importButton:hover {
        text-decoration: underline;
        color: #0056b3;
    }

.help-info-button {
    border: none;
    background: none;
    font-size: small;
}
/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  /* Set the fixed height of the footer here */
  height: 60px;
  line-height: 60px; /* Vertically center the text there */
}


.drag-drop-zone {
    border: 3px dashed #aeaeae;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eee;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.2);
    color: #aeaeae;
    font-size: 1.5rem;
    cursor: pointer;
    margin-bottom: 2rem;
    position: relative;
}

.drag-drop-zone:hover {
    background-color: #f5f5f5;
}

.drag-drop-zone input[type=file] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Telerik */
.k-grid a {
    color: #007bff
}

/* Verstecke die Standard-Checkbox */
input[type="checkbox"].green-color-checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 13px;
  height: 13px;
  border-radius: 2px;
  background-color: #fff;  /* Hintergrundfarbe, wenn nicht ausgewählt */
  border: 1px solid gray;     /* Randfarbe */
  position: relative;
  display: inline-block;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Wenn die Checkbox ausgewählt ist */
input[type="checkbox"].green-color-checkbox:checked {
  background-color: #4CAF50;  /* Hintergrundfarbe, wenn ausgewählt */
  border-color: #4CAF50;
}

/* Optional: Haken, wenn die Checkbox ausgewählt ist */
input[type="checkbox"].green-color-checkbox:checked::after {
  content: "✔";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 8px;
  color: white;
}

button.right_button{
  float: right;
  margin-bottom: 10px;
}

.table-in-box{
  /* width: 200px; */ /* oder eine andere Breite nach Wunsch */
  max-height: 100px; /* Maximale Höhe */
  overflow: auto; /* Scrollbar wird angezeigt, wenn der Inhalt zu groß wird */
  border: 1px solid rgba(0, 0, 0, 0.125); /* Grenze des Containers */
  border-radius: 0.25rem;
  padding: 10px; /* Optional, um Abstand zum Inhalt zu schaffen */
  margin-top: 10px;
  margin-bottom: 10px;

  .k-grid-header {
    display: none; /* Blendet die Kopfzeile aus */
}
}