/* ===== GLOBAL ===== */
body {
    margin: 0;
    background: #0e0e10;
    color: #e0e0e0;
    font-family: 'Segoe UI', Arial, sans-serif;
}

a { color: #66c2ff; text-decoration: none; }
a:hover { opacity: .8; }

.container {
    max-width: 1100px;
    margin: 90px auto 40px auto;
    padding: 0 15px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;              /* WICHTIG */
    width: 100vw;         /* GANZE BREITE – verhindert Abschneiden */
    height: 58px;
    background: #1a1a1d;
    display: flex;
    align-items: center;
    justify-content: space-between;  /* sauberere Verteilung */
    padding: 0 18px;
    border-bottom: 1px solid #262626;
    z-index: 100;
    box-sizing: border-box;          /* verhindert Überlauf */
}


/* ===== CARDS ===== */
.card {
    background: #1a1a1d;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,.35);
    margin-bottom: 25px;
}

label {
    display: block;
    margin-top: 14px;
    margin-bottom: 4px;
    font-weight: 500;
}

.card input {
    margin-left: 0 !important;
    display: block;
}

.card input,
.card select {
    max-width: 380px;
}


/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    background: #1464f6;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
}
.btn:hover { background: #1c7dff; }

.btn-outline {
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid #3a3a3f;
    color: #e0e0e0;
    background: transparent;
}
.btn-outline:hover { background: #232327; }

/* ===== FORM ===== */
input, select {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: #0e0e10;
    border: 1px solid #333;
    border-radius: 8px;
    color: #e0e0e0;
}

/* ===== TABLE ===== */
.table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a1d;
}
.table th, .table td {
    padding: 12px;
    border-bottom: 1px solid #2a2a2f;
}

.status-ok { color: #55ff99; }
.status-ban { color: #ff5959; }
