.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 {
    font-size: 14px;
    font-family: 'Cascadia Code', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 40px auto;
    background-color: #0c0c0c;
    color: #cccccc;
    min-height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url('/img/Tastatur.jpg');
    background-size: contain;
    background-position: bottom center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 0 20px;
    overflow-y: auto;
}

@media (min-width: 768px) {
    body {
        font-size: 16px;
    }
}

.terminal-green {
    color: #13A10E;
}

.terminal-blue {
    color: #0037DA;
}

.terminal-red {
    color: #C50F1F
}

@keyframes cursor-blink {
    from, to {
        color: transparent;
    }

    50% {
        color: #FFFFFF;
    }
}

.cursor {
    animation: 1.5s cursor-blink step-end infinite;
}

.container {
    padding: 20px;
}

h1 {
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

h2 {
    margin-top: 30px;
    font-size: 1.4em;
}

ul {
    padding-left: 20px;
}

.legal-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 10px;
    margin-top: 20px;
}

.label {
    font-weight: bold;
}

.section-header {
    margin-top: 30px;
    border-bottom: 1px solid #eee;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 1px;
}

.company-box {
    background: #f9f9f9;
    padding: 15px;
    border-left: 4px solid #0056b3;
    margin: 20px 0;
}

.site-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: black;
}

.logo-container a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 60px;
    width: auto;
}

.header-nav {
    display: flex;
    gap: 25px;
}

.header-nav a {
    font-weight: 500;
    letter-spacing: 0.5px;
}

a {
    color: #0CFDF7;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0077cc;
}

@@media (max-width: 600px) {
    .site-header {
        flex-direction: column;
        gap: 25px;
        padding: 15px 2%;
    }

    .header-nav {
        gap: 25px;
    }
}

.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;
}

.lang-picker {
    position: relative;
    list-style: none;
}

.lang-picker summary {
    list-style: none;
    cursor: pointer;
    padding: 10px 15px;
    user-select: none;
}

.lang-list {
    position: absolute;
    top: calc(100% + 5px);
    border: 1px solid #0CFDF7;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    min-width: 140px;
    z-index: 100;
    padding: 5px 0;
    display: flex;
    flex-direction: column;
    background-color: black;
}

.lang-list a {
    padding: 12px 16px;
    text-decoration: none;
    border-bottom: 1px solid #0CFDF7;
}

.lang-list a:last-child {
    border-bottom: none;
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}
