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;
}

/*table td {
    white-space: nowrap;
}

.table th {
    word-wrap: normal;
    white-space: nowrap;
    width: auto;
    text-align: left;
}*/

table.table tbody tr:hover {
    background-color: #f0f8ff; /* Wählen Sie hier Ihre gewünschte Farbe */
    cursor: pointer; /* Optional: Ändert den Cursor zu einem Zeiger */
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Für sanftes Scrollen auf Mobilgeräten */
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

th, td {
    padding: 8px 12px;
    border: 1px solid #ddd;
    white-space: nowrap; /* Verhindert, dass Text umbricht */
}

/*@media (max-width: 600px) {
    th, td {
        font-size: 12px;*/ /* Verkleinere den Text auf kleinen Geräten */
    /*}
}*/

/* Standard container für große Bildschirme */
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}

/* Für kleinere Bildschirme (z. B. ab 768px) */
@media (max-width: 600px) {
    .container {
        max-width: 100%; /* Volle Breite auf kleinen Bildschirmen */
        padding-right: 10px;
        padding-left: 10px;
    }
}

/* Navbar Settings*/
/*.custom-navbar {
    background-color: #003594;*/ /* Beispiel für Orange */
/*}*/

/*Buttons*/
.btn.btn-primary {
    background-color: #2C70C0 !important; /* Setzt die Hintergrundfarbe */
    border-color: #2C70C0 !important; /* Passt die Rahmenfarbe an */
    color: #fff !important; /* Textfarbe */
}

    .btn.btn-primary:hover,
    .btn.btn-primary:focus,
    .btn.btn-primary:active {
        background-color: #2C70C0 !important; /* Entfernt Hover-Änderungen */
        border-color: #2C70C0 !important;
        color: #fff !important;
        box-shadow: none !important; /* Entfernt Fokus-Schlagschatten */
    }



/*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;
}*/