/* === Allgemein === */
body {
    background: url('/assets/img/club-background.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* === Header === */
.admin-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

.admin-header__left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-header__logo {
    width: 100px;
    filter: drop-shadow(0 0 5px #00ddb8);
}

.admin-header__title {
    font-size: 1.3rem;
    color: #00ddb8;
    font-weight: bold;
}

.admin-header__actions .link {
    font-weight: bold;
}

/* === Card Layout === */
.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 16px;
    width: 100%;
    max-width: 700px;
    margin: 40px auto;
    box-shadow: 0 0 30px rgba(0, 221, 184, 0.2);
}

.card--edit {
    max-width: 500px;
}

.card--login {
    max-width: 400px;
    margin-top: 100px;
}

.card__logo {
    width: 120px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #00ddb8);
}

/* === Heading === */
h1, h2 {
    color: #00ddb8;
    text-align: center;
}

/* === Formular === */
.form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form__group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form__label {
    font-weight: bold;
}

.form__input, .form__checkbox {
    padding: 10px;
    border: none;
    border-radius: 4px;
    margin-top: 5px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    outline: none;
    transition: 0.3s;
}

.form__input:focus {
    box-shadow: 0 0 5px #00ddb8;
}

.form__checkbox {
    transform: scale(1.2);
}

/* === Buttons === */
.form__button, .button {
    background-color: #00ddb8;
    color: #000;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0,221,184,0.5);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.form__button:hover, .button:hover {
    background-color: #00b99c;
    box-shadow: 0 0 15px rgba(0,221,184,0.8);
    transform: translateY(-1px);
}

/* === Event Liste === */
.event-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.event-list__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.event-list__item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.event-list__date {
    font-size: 1.1rem;
    color: #00ddb8;
    font-weight: bold;
    min-width: 80px;
    padding-right: 20px;
}

.event-list__details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    gap: 20px;
    flex-wrap: wrap;
}

.event-list__city {
    font-weight: bold;
    font-size: 1rem;
}

.event-list__venue {
    font-size: 0.9rem;
    opacity: 0.8;
}

.event-list__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* === Links === */
.link {
    color: #00ddb8;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.link:hover {
    color: #00b99c;
    text-shadow: 0 0 5px rgba(0,221,184,0.5);
}

/* === Footer === */
.footer {
    text-align: center;
    margin: 50px 0 20px 0;
    font-size: 0.8em;
    color: #999;
}

/* === Error === */
.error {
    color: #ff5555;
    font-weight: bold;
    margin: 10px 0;
}

/* === Responsive === */
@media(max-width: 600px){
    .card {
        padding: 20px;
    }

    .admin-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .admin-header__left {
        justify-content: space-between;
        width: 100%;
    }

    .admin-header__actions {
        width: 100%;
        text-align: right;
    }

    .event-list__details {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-list__actions {
        justify-content: flex-start;
        width: 100%;
        margin-top: 5px;
    }
}
