
.wscp-tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.wscp-tab-button {
    padding: 10px 20px;
    cursor: pointer;
    border: none;
    background: #eee;
}

.wscp-tab-button.active {
    background: #ddd;
    font-weight: bold;
}

.wscp-tab-content {
    display: none;
}

.wscp-tab-content.active {
    display: block;
}


/* Äußerer Container: Overlay und Zentrierung */
#wscp-login-popup {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);  /* dunkles Overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Innerer Container: Nur weißer Kasten, Schatten, Padding, Border */
.wscp-auth-modal {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #ccc;
    position: relative;
}

/* Falls der innere Container vorher auch einen Border hatte, entferne ihn dort, wenn doppelt */


