.wy-course-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wy-course-list li {
    margin-bottom: 2em;
}

/* Container für jede Kurszeile */
.wy-course-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1em;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1em;
}

.wy-course-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1em;
    flex-wrap: wrap;
}


.wy-action-form {
    margin: 0;
}

.wy-course-actions {
    min-width: 200px;
}

.wy-course-actions span {
    color: #666;
    font-size: 0.95em;
    display: block;
    margin-top: 0.3em;
}

.wy-action-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5em;
    flex-wrap: wrap; /* Für kleinere Screens */
}

.wy-action-info {
    font-size: 0.9em;
    color: #555;
}

/* ===== Kompakter Header (eingeloggt) ===== */
.wy-compact-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5em 1.5em;
    padding: 0.6em 1em;
    margin-bottom: 0.5em;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.95em;
}

.wy-compact-info {
    display: flex;
    flex-direction: column;
    gap: 0.15em;
}

.wy-compact-identity {
    font-weight: 600;
}

.wy-compact-credits {
    color: #555;
}

.wy-compact-actions form {
    margin: 0;
}

/* ===== Kontaktdaten (eingeklappt) ===== */
.wy-contact-details {
    margin-bottom: 1.5em;
}

.wy-contact-details summary {
    cursor: pointer;
    font-size: 0.9em;
    color: #0073aa;
    padding: 0.2em 0;
    user-select: none;
}

.wy-contact-details summary:hover {
    text-decoration: underline;
}

.wy-contact-details[open] summary {
    margin-bottom: 0.75em;
}

.wy-contact-hint {
    font-size: 0.9em;
    color: #666;
    margin: 0 0 0.75em;
}

/* ===== Vergangene Kurse (eingeklappt) ===== */
.wy-past-courses {
    margin: 0.5em 0 1.5em;
}

.wy-past-courses > summary {
    cursor: pointer;
    font-size: 0.9em;
    color: #888;
    padding: 0.2em 0;
    user-select: none;
}

.wy-past-courses > summary:hover {
    color: #555;
}

.wy-past-courses[open] > summary {
    margin-bottom: 0.5em;
}

.wy-past-courses .wy-course-row {
    opacity: 0.6;
    border-bottom-style: dashed;
}

.wy-past-courses .wy-course-list li:last-child .wy-course-row {
    border-bottom: none;
}

#wy-contact-update-form {
    margin-bottom: 0;
}

.wy-contact-form-buttons {
    display: flex;
    gap: 8px;
}

.wy-contact-field {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 0.2em;
}

.wy-contact-field label {
    margin: 0;
    width: 80px;
}

.wy-contact-field input {
    flex: 1;
    padding: 2px 6px;
    max-width: 400px;
    min-width: 200px;
}

.wy-contact-field input.wy-input-readonly {
    border: none;
    background: transparent;
}

.wy-contact-field input.wy-input-edit {
    border: 1px solid #ccc;
    background: #fff;
}

/* Fehlermeldungen */
.wy-error {
    color: red;
    margin: 0;
}

/* ===== Login Formular ===== */
.wy-login-box {
    margin-bottom: 2em;
    padding: 1em 1.2em;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.wy-login-form {
    margin: 0;
}

.wy-login-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5em 10px;
}

.wy-login-header label {
    width: 100%;
    margin-bottom: 0;
    font-size: 0.95em;
}

.wy-login-header input {
    flex: 1;
    min-width: 180px;
    max-width: 300px;
}


/* Responsive Design */
@media (max-width: 600px) {
    .wy-course-row {
        flex-direction: column;
    }

    .wy-course-actions {
        width: 100%;
        margin-top: 1em;
    }

    .wy-action-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}