/* Менеджеры */
.manager-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: box-shadow 0.2s;
}

.manager-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.manager-info {
    flex: 1;
}

.manager-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.manager-header strong {
    font-size: 15px;
    color: #1e293b;
}

.manager-meta {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 6px;
}

.manager-status {
    font-size: 13px;
}

.status-active {
    color: #10b981;
    font-weight: 500;
}

.status-inactive {
    color: #ef4444;
    font-weight: 500;
}

.manager-actions {
    display: flex;
    gap: 8px;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.badge-owner {
    background: #fef3c7;
    color: #92400e;
}

.badge-admin {
    background: #dbeafe;
    color: #1e40af;
}

.badge-manager {
    background: #e0e7ff;
    color: #4338ca;
}