table {
    --bs-emphasis-color: #858796;
}

.table-striped td {
    border-bottom-width: 0
}

/* sticky footer */

main > .container {
    padding: 60px 15px 0;
}

.footer {
    background-color: #f5f5f5;
}

.footer > .container {
    padding-right: 15px;
    padding-left: 15px;
}

code {
    font-size: 80%;
}

/* Pulse-Animation für Einsatzbereitschaft-Button wenn noch nicht ausgefüllt */
@keyframes btn-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(13, 110, 253, 0); }
    100% { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0); }
}

.btn-pulse {
    animation: btn-pulse 1.8s ease-in-out infinite;
}