﻿.login-btn {
    width: 100%;
    background: var(--accent); /* dein Blau (#2563eb) */
    color: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.12s ease-in-out;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.18);
}

    .login-btn:hover {
        background: #1d4ed8; /* dunkleres Blau */
        box-shadow: 0 6px 18px rgba(37, 99, 235, 0.25);
    }

/* Scrollbare Benutzerliste */
.user-list-container {
    max-height: 400px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-right: 6px;
}

/* Benutzer-Eintrag */
.user-entry {
    padding: 0.6rem 0.8rem;
    background: var(--card);
    border: 1px solid rgba(37,99,235,0.05);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: 0.12s ease-in-out;
}

    .user-entry:hover {
        background: var(--blue-100);
    }

.user-active {
    background: var(--blue-200) !important;
    border-color: var(--accent) !important;
    font-weight: 600;
}

/* Suchfeld benutzt deine Input-Optik */
.input-box {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #dee2e6;
    background: #f0f6ff;
    font-size: 1rem;
    transition: 0.12s ease-in-out;
}
