@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');

body {
    background: linear-gradient(135deg, #444444 0%, #111111 100%);
    background-attachment: fixed;
    color: white;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.header-small {
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.4;
}

.divider {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    margin: 20px 0;
    width: 100%;
}

/* Buttons */
.btn-start {
    color: #44ff44;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    cursor: pointer;
}

.btn-stop {
    color: #ff4444;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    cursor: pointer;
}

/* K.I.T.T. Scanner Effekt */
.scanner-container {
    width: 100%;
    height: 4px;
    background: #111;
    position: relative;
    overflow: hidden;
    margin: 10px 0;
    border-radius: 2px;
}

.scanner-bar {
    width: 80px;
    height: 100%;
    background: linear-gradient(to right, rgba(255,0,0,0) 0%, rgba(255,0,0,1) 50%, rgba(255,0,0,0) 100%);
    box-shadow: 0 0 15px 2px #ff0000;
    position: absolute;
    animation: scanner 2s infinite ease-in-out;
}

@keyframes scanner {
    0% { left: -80px; }
    50% { left: 100%; }
    100% { left: -80px; }
}

/* Log-Textfeld */
.log-entry {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px;
    font-family: inherit;
    font-size: 1rem;
    border-radius: 5px;
    resize: vertical;
    min-height: 150px;
    margin-top: 10px;
    box-sizing: border-box;
}

/* Tabelle Dashboard */
table {
    width: 100%;
    margin-top: 20px;
}

th {
    border-bottom: 1px solid white;
    padding-bottom: 10px;
    font-weight: 400;
    font-size: 0.8rem;
}

td {
    padding: 15px 0;
}
/* Kleine Eingabefelder für Admin-Bereich */
.admin-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px;
    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 10px;
    font-size: 0.9rem;
}
