/* ── Employee rows ── */
.employee-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    margin-bottom: 0.5rem;
}

.employee-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #f0f0f0;
}

.role-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.role-badge.owner {
    background: #78350f;
    color: #fcd34d;
}

.role-badge.staff {
    background: #1e3a5f;
    color: #93c5fd;
}

/* ── Token notice ── */
.token-notice {
    background: #0f2010;
    border: 1px solid #16a34a;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.token-notice p {
    color: #86efac;
    font-size: 0.875rem;
}

.token-notice p strong {
    color: #f0f0f0;
}

.token-value {
    background: #0f0f0f;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 0.6rem 0.8rem;
    font-family: ui-monospace, monospace;
    font-size: 0.85rem;
    color: #f0f0f0;
    word-break: break-all;
}

.token-notice-actions {
    display: flex;
    gap: 0.5rem;
}

.token-notice-actions button {
    width: auto;
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
    background: #1a3320;
    border: 1px solid #16a34a;
    color: #86efac;
}

.token-notice-actions button:hover {
    background: #1f3d28;
}

/* ── Create employee form ── */
.create-employee-form {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.create-employee-form input {
    flex: 1;
    min-width: 140px;
}

.create-employee-form select {
    background: #0f0f0f;
    border: 1px solid #333;
    border-radius: 8px;
    color: #f0f0f0;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    outline: none;
    flex-shrink: 0;
}

.create-employee-form select:focus {
    border-color: #555;
}

.create-employee-form button {
    width: auto;
    padding: 0.75rem 1.2rem;
    flex-shrink: 0;
}
