.adminContainer {
    margin: 15vh auto 10vh auto; /* oben/unten mehr Abstand */
    max-width: 2000px; /* etwas breiter */
    background: rgba(40, 40, 40, 0.95);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    padding: 3em 2.5em;
    font-size: 1.35em; /* größere Schrift */
}

.adminHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2em;
}

.adminLogoutBtn {
    background: #fff34b;
    color: #222;
    padding: 0.5em 1.2em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1em;
    transition: background 0.2s;
}
.adminLogoutBtn:hover {
    background: #f0d947;
}

.adminBackLink {
    color: #fff34b;
    font-weight: bold;
    text-decoration: none;
    margin-right: 1.5em;
    font-size: 1em;
}

.adminTable {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2em;
    background: #222;
    border-radius: 10px;
    overflow: hidden;
}
.adminTable th, .adminTable td {
    padding: 0.8em 1em;
    text-align: left;
    border-bottom: 1px solid #333;
}
.adminTable th {
    background: #fff34b;
    color: #222;
    font-weight: bold;
}
.adminTable tr:last-child td {
    border-bottom: none;
}
.adminTable td {
    color: #fff;
}

.adminForm input[type="text"],
.adminForm input[type="date"] {
    font-family: "futura-pt", sans-serif;
    font-size: 1em;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background: #fafafa;
    padding: 0.5em 1em;
    margin-right: 0.5em;
    margin-bottom: 0.3em;
}
.adminForm button {
    background: #fff34b;
    color: #222;
    border: none;
    border-radius: 8px;
    padding: 0.5em 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.adminForm button:hover {
    background: #f0d947;
}

.adminForm .inputFeld {
    font-family: "futura-pt", sans-serif;
    font-size: 1em;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background: #fafafa;
    padding: 0.7ex 1ex;
    margin-top: 1%;
    margin-bottom: 1%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04) inset;
    transition: box-shadow 0.2s;
}
.adminForm .inputFeld:focus {
    box-shadow: 0 0 0 2px #f0d947 inset;
    outline: none;
}

.adminTableBtn {
    background: #fff34b;
    color: #222;
    border: none;
    border-radius: 8px;
    padding: 0.5em 1.2em;
    font-weight: bold;
    font-size: 2vh;
    cursor: pointer;
    transition: background 0.2s;
    height: 4vh;
}

@media screen and (max-width: 600px) {
    .adminContainer form[method="post"][style*="float:right"],
    .adminBackLink {
        float: none !important;
        display: block;
        width: 100%;
        margin: 5vh 0 1em 0;
        text-align: center;
    }
    .adminContainer {
        padding: 1.5em 0.5em;
        margin: 15vh 0 6vh 0;
        border-radius: 0;
        font-size: 1.1em;
    }
    .adminForm {
        width: 98vw;
        max-width: 100%;
        margin: 0 auto 2em auto !important;
        padding: 0.5em 2vw;
        box-sizing: border-box;
        border-radius: 8px;
        background: rgba(255,255,255,0.03);
        gap: 1.2em;
    }
    .adminForm label {
        font-size: 1.1em;
        margin-bottom: 0.3em;
    }
    .adminForm .inputFeld,
    .adminForm input[type="text"],
    .adminForm input[type="date"],
    .adminForm input[type="password"] {
        width: 100% !important;
        font-size: 1.1em;
        padding: 1.2ex 1.5ex;
        margin-top: 2vw;
        margin-bottom: 2vw;
        box-sizing: border-box;
    }
    .adminForm button {
        width: 100%;
        font-size: 1em;
        padding: 0.5em 0.2em;
        margin-top: 0.5vw;
        min-height: 60px;
        z-index: 2;
        position: relative;
    }
    .adminLogoutBtn {
        width: 66%;
        min-height: 60px;
        font-size: 1.1em;
        padding: 0.7em 0;
        z-index: 20;
        position: relative;
        margin-bottom: 1em;
    }
    .adminTable {
        font-size: 0.95em;
        overflow-x: auto;
        display: block;
    }
    .adminTable th, .adminTable td {
        padding-top: 1.2em;
        padding-bottom: 1.2em;
        vertical-align: middle;
    }

    .adminTable td .adminBackLink {
        margin-bottom: 0.5em;
        min-height: 2.5em;
    }

    .adminForm input[type="date"],
    .adminForm .inputFeld[type="date"] {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        padding-left: 0.5em !important;
        padding-right: 0.5em !important;
        margin: 0 !important;
        font-size: 1.1em;
        box-sizing: border-box !important;
    }

    .adminTableBtn {
        background: #fff34b;
        color: #222;
        border: none;
        border-radius: 8px;
        padding: 0.5em 1.2em;
        font-weight: bold;
        font-size: 1em;
        cursor: pointer;
        transition: background 0.2s;
        height: 44px;
        min-width: 80px;
        margin: 0.2em 0.2em;
        display: inline-block;
        box-sizing: border-box;
    }
}