html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px; /* Platz für Footer */
}

/* Buttons */
.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;
}

.btn.btn-primary {
    background-color: #2C70C0 !important;
    border-color: #2C70C0 !important;
    color: #fff !important;
}

    .btn.btn-primary:hover,
    .btn.btn-primary:focus,
    .btn.btn-primary:active {
        background-color: #2C70C0 !important;
        border-color: #2C70C0 !important;
        color: #fff !important;
        box-shadow: none !important;
    }

/* Tabellen */
table.table tbody tr:hover {
    background-color: #f0f8ff;
    cursor: pointer;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

th, td {
    padding: 8px 12px;
    border: 1px solid #ddd;
    white-space: nowrap;
}

/* Container */
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}

@media (max-width: 600px) {
    .container {
        max-width: 100%;
        padding-right: 10px;
        padding-left: 10px;
    }
}

/* 📱 Mobile Optimierung für Footer-Überdeckung */
main {
    padding-bottom: 100px; /* Schafft Platz für Footer */
}

@media (max-width: 600px) {
    .btn-row,
    .button-container,
    .form-buttons {
        margin-bottom: 120px; /* Buttons extra Abstand geben */
    }
}

.btn-primary-header {
    background: linear-gradient(90deg,#1f5fbf,#2d74e0);
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: .7rem .7rem 0 0;
    padding: .9rem 1.3rem;
}




/*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.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;
    }
}*/


/*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 */
    /*}*/

