/* ===== AU.css ===== */
#au-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}
#au-modal[hidden] {
    display: none;
}
.au-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;           /* Hinzugefügt */
    align-items: center;     /* Hinzugefügt */
    justify-content: center; /* Hinzugefügt */
}
.au-dialog {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    max-width: 400px;
    width: 100%;
    position: relative;
    min-height: 200px; /* Hinzugefügt, um sicherzustellen, dass das Modal nicht zu klein wird */
}
.au-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}
.au-pane {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.au-pane[hidden] {
    display: none;
}
.au-pane h2 {
    margin: 0 0 15px;
    font-size: 24px;
}
.au-pane form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.au-pane input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.au-pane button.primary {
    background: #3366ff;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.au-pane button.primary:hover {
    background: #2a55cc;
}
.link-row {
    text-align: center;
    margin-top: 10px;
}
.link-row a {
    color: #3366ff;
    text-decoration: none;
}
.link-row a:hover {
    text-decoration: underline;
}
