/* Stellt sicher, dass der Footer immer unten ist */
html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}
table{
    font-size:13.25px;
}

/*Clickbare Tabellenzeilen*/
.clickable-row {
    cursor: pointer;
}

    .clickable-row:hover {
        background-color: #054b13d9;
        font-size:12px;
        font-weight: bold;
    }

.clickable-row1 {
    cursor: pointer;
   
}
    .clickable-row1:hover {
        background-color: #054b13d9;
        font-size: 12px;
        font-weight: bold;
    }

.clickable-monitor_1 {
    cursor: pointer;
}

    .clickable-monitor_1:hover {
        color: #00008b; /* Dunkelblau */
        font-size: 12px;
        font-weight: bold;
    }

.clickable-monitor_2 {
    cursor: pointer;
}

    .clickable-monitor_2:hover {
        background-color: #054b13d9;
        font-size: 12px;
        font-weight: bold;
    }

.clickable-Access_1 {
    cursor: pointer;
}
    .clickable-Access_1:hover {
        background-color: #b200ffff;
        font-size: 12px;
        font-weight: bold;
    }

.clickable-accesspoint {
    cursor: pointer;
}

    .clickable-accesspoint:hover {
        background-color: #0026ff;
        font-size: 12px;
        font-weight: bold;
    }

/*Ende Klickbare Tabellenzeilen*/

.table-hover tbody tr:hover {
    background-color: #808080; /* Light blue */
    transition: background-color 0.2s ease-in-out;
}


.table-hover tbody tr:hover {
    background-color: #808080; /* Light blue */
    transition: background-color 0.2s ease-in-out;
}






.d-flex {
    display: flex;
    flex-direction: column;
    min-height: 90%;
}

.flex-grow-1 {
    flex: 1;
}

.main-content {
    flex: 1; /* Nimmt den verbleibenden Platz ein */
}

.footer {
    background-color: #f8f9fa; /* Beispielhintergrund für die Fußzeile */
    padding: 10px 20px;
    text-align: center;
    border-top: 1px solid #dee2e6; /* Optionale obere Linie */
}

/*   Media Handy */
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

@media print {
    /* Verhindert Ränder beim Drucken */
    html, body {
        margin: auto;
        text-align: center; /* Zentriert den Inhalt auf der Seite */
    }
    /* Container auf 100% Breite und ohne Abstände setzen */
    .container {
        max-width: 100%; /* Container auf volle Breite */
        width: 100%;
        margin: 0 auto; /* Zentriert den Inhalt */
        padding: 0;
    }
    /* Titel zentrieren */
    h1 {
        text-align: center;
        font-size: 22px;
        margin-bottom: 18px; /* Abstand zwischen Titel und Inhalt */
    }

        h1.text-center {
            margin-bottom: 20px;
        }
    /* Tabellenlayout ohne zusätzliche Abstände */
    table {
        width: 100%;
        border-collapse: collapse;
        margin: 0; /* Verhindert Abstände */
    }

    th, td {
        padding: 8px;
        text-align: left;
        border: 1px solid #ddd;
    }
    /* Den Filterbereich und Buttons ausblenden */
    .no-print {
        display: none;
    }
}
/*Menu*/

.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -6px;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }

    .dropdown-submenu > a::after {
        content: "\2192"; /* Code für das Symbol "Arrow Right Square" */
        float: right;
        margin-bottom: 5px;
        font-size: 1.2rem; /* Größe des Symbols */
    }

.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;
}



.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.btn-ma {
    margin-top: 15px;
    margin-bottom: 15px;
}

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
