html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.nav-link-top:hover {
    color: #2b8d2d;
    /*color: #fff;*/
    background-color: #13cb1715;
    border-color: #1861ac;
}


.custom-popover {
    max-width: 600px; /* oder jede andere gewünschte Breite */
    width: 600px;
}

.truncate-text {
    max-width: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.limit-row-height {
    height: 40px; /* feste Höhe */
    overflow: hidden; /* Inhalt abschneiden */
    white-space: nowrap; /* Kein Zeilenumbruch */
    text-overflow: ellipsis; /* ... bei Überlänge */
}

.btn-back-to-top {
    z-index: 9999;
    background-color: darkgreen;
}

.table-sulico {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #dee2e6;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

    .table-sulico th {
        padding: .3rem;
        vertical-align: middle;
        border: 1px solid #dee2e6;
    }

    .table-sulico td {
        padding: .3rem;
        vertical-align: middle;
        border: 1px solid #dee2e6;
    }

    .table-sulico tbody tr:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }

    .table-sulico tbody tr:nth-of-type(odd) {
        background-color: rgba(0, 0, 0, 0.02);
    }