body {
    margin: 0;
    height: 100vh;
    background: #1e1e1e;
    color: #fff;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    gap: 20px;
    margin: 20px;
}

.left,
.right {
    background: #2e2e2e;
    padding: 15px;
    border-radius: 8px;
    width: 50%;
}

label {
    display: block;
    margin-top: 8px;
}

input,
select,
textarea,
button {
    width: 100%;
    margin-top: 4px;
    padding: 8px;
    border: none;
    border-radius: 6px;
    background: #444;
    color: #fff;
}

input::placeholder,
textarea::placeholder {
    color: #aaa;
}

textarea {
    resize: vertical;
}

button {
    background: #555;
    cursor: pointer;
}

button:hover {
    background: #666;
}

.buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.checkbox-list {
    display: block;
    background: #3a3a3a;
    padding: 8px;
    border-radius: 6px;
    max-height: 300px;
    overflow-y: auto;
}

.checkbox-list {
    padding: 8px 8px 8px 4px;
}

.checkbox-list label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    padding: 8px 0;
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: white;
    gap: 8px;
}

.checkbox-list input[type="checkbox"] {
    width: auto;
    margin: 0 0 10 10px;
    transform: scale(1.7);
    cursor: pointer;
    top: -2px;
}


.checkbox-list label:hover {
    background: #505050;
}

.checkbox-list span {
    vertical-align: middle;
}

#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    background-color: #28a745;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s ease;
    font-size: 14px;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

/* Login bleibt wie gehabt */
.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.login-form {
    background: #2e2e2e;
    padding: 40px;
    border-radius: 12px;
    width: 300px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.login-form h2 {
    color: #fff;
    margin-bottom: 20px;
}

.login-form input {
    background: #444;
}

.login-form button {
    background: #4CAF50;
}

.login-form button:hover {
    background: #45a049;
}

.error {
    color: #ff6b6b;
    margin-bottom: 10px;
}